1
Fork 0

test: Change the expected error message on iface-test.rs to contain "trait" instead of "interface"

This commit is contained in:
Patrick Walton 2012-07-18 20:42:14 -07:00
parent 6cb38aeb43
commit f82db5d136

View file

@ -1,5 +1,5 @@
iface foo { fn foo(); }
impl of int for uint { fn foo() {} } //~ ERROR interface
impl of int for uint { fn foo() {} } //~ ERROR trait
fn main() {}