Added test for partially supplied type params in which remaining reference non-existant self

This commit is contained in:
Sean Bowe 2015-09-13 21:43:24 -06:00
parent af3a0b0805
commit 3d0774f598

View file

@ -25,4 +25,6 @@ fn main() {
//~^ ERROR no associated item named
let d = Bar::<usize, _>::lol();
//~^ ERROR no associated item named
let e = Bar::<usize>::lol();
//~^ ERROR must be explicitly specified
}