summaryrefslogtreecommitdiffstats
path: root/tests/ui/invalid_crate_type_syntax.rs
blob: 621587af35ed702a6698889ea551854fcce3e79f (plain)
1
2
3
4
5
6
// regression test for issue 16974
#![crate_type(lib)]  //~ ERROR malformed `crate_type` attribute input

fn my_lib_fn() {}

fn main() {}