()
| 44 | |
| 45 | #[test] |
| 46 | fn stdlib_always_uses_hosted_mode() { |
| 47 | let mode = |
| 48 | infer_target_mode_for_source("kmain: () -> () { return }", true, TargetMode::Kernel); |
| 49 | assert_eq!(mode, TargetMode::Hosted); |
| 50 | } |
| 51 | |
| 52 | #[test] |
| 53 | fn comments_do_not_trigger_detection() { |
nothing calls this directly
no test coverage detected