• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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