rust/src/test/compile-fail/use-meta-dup.rs

5 lines
99 B
Rust
Raw Normal View History

// error-pattern:duplicate meta item `name`
2011-07-27 07:19:39 -05:00
use std(name = "std", name = "nonstd");
2011-07-27 07:19:39 -05:00
fn main() { }