()
| 102 | |
| 103 | #[test] |
| 104 | fn hello_world() { |
| 105 | let output = compile( |
| 106 | &[], |
| 107 | r#" |
| 108 | fn main() { |
| 109 | println!("hello!"); |
| 110 | } |
| 111 | "#, |
| 112 | ); |
| 113 | assert_component(&output); |
| 114 | } |
| 115 | |
| 116 | #[test] |
| 117 | fn cdylib_arbitrary_export() { |
nothing calls this directly
no test coverage detected