test: Fix error message in vtable-res-trait-param

This commit is contained in:
Patrick Walton 2012-10-03 21:13:58 -07:00
parent a35dc85b68
commit c2fc7316a9
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ impl int: TraitB {
fn call_it<B: TraitB>(b: B) -> int {
let y = 4u;
b.gimme_an_a(y) //~ ERROR failed to find an implementation of trait @TraitA for uint
b.gimme_an_a(y) //~ ERROR failed to find an implementation of trait @TraitA
}
fn main() {