• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #![allow(unused_imports)]
2 #![allow(deprecated)]
3 
4 extern crate libc;
5 
6 // Generated in `build.rs`.
7 include!(concat!(env!("OUT_DIR"), "/semver.rs"));
8 
main()9 fn main() {
10     // The test is about the imports created in `semver.rs`.
11     println!("PASSED 1 tests");
12 }
13