From f82db5d136ffd9975d12b9f1c103a03abb4cbe4c Mon Sep 17 00:00:00 2001 From: Patrick Walton Date: Wed, 18 Jul 2012 20:42:14 -0700 Subject: [PATCH] test: Change the expected error message on iface-test.rs to contain "trait" instead of "interface" --- src/test/compile-fail/iface-test.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/compile-fail/iface-test.rs b/src/test/compile-fail/iface-test.rs index 3f3f28f21ed..1523c4d9b96 100644 --- a/src/test/compile-fail/iface-test.rs +++ b/src/test/compile-fail/iface-test.rs @@ -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() {}