rust/src/test/compile-fail/issue-3033.rs
2012-07-27 17:33:05 -07:00

7 lines
174 B
Rust

type cat = {cat_name: ~str, cat_name: int}; //~ ERROR Duplicate field name cat_name
fn main()
{
io::println(int::str({x: 1, x: 2}.x)); //~ ERROR Duplicate field name x
}