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