]> git.lizzy.rs Git - rust.git/blob - src/test/ui/invalid_crate_type_syntax.rs
Auto merge of #60072 - RalfJung:linked-list, r=shepmaster
[rust.git] / src / test / ui / invalid_crate_type_syntax.rs
1 // regression test for issue 16974
2 #![crate_type(lib)]  //~ ERROR attribute must be of the form
3
4 fn my_lib_fn() {}
5
6 fn main() {}