xref: /aosp_15_r20/external/bazelbuild-rules_rust/examples/flag_locations/main.rs (revision d4726bddaa87cc4778e7472feed243fa4b6c267f)
1 #[test]
test()2 fn test() {
3     // we should be able to read rustc args from a generated file
4     if cfg!(test_flag) {
5         return;
6     }
7 
8     unreachable!();
9 }
10