diff options
Diffstat (limited to '')
-rw-r--r-- | src/test/ui/generics/generic-arg-mismatch-recover.rs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/test/ui/generics/generic-arg-mismatch-recover.rs b/src/test/ui/generics/generic-arg-mismatch-recover.rs new file mode 100644 index 000000000..2cf7f1d65 --- /dev/null +++ b/src/test/ui/generics/generic-arg-mismatch-recover.rs @@ -0,0 +1,12 @@ +struct Foo<'a, T: 'a>(&'a T); + +struct Bar<'a>(&'a ()); + +fn main() { + Foo::<'static, 'static, ()>(&0); + //~^ ERROR this struct takes 1 lifetime argument but 2 lifetime arguments were supplied + + Bar::<'static, 'static, ()>(&()); + //~^ ERROR this struct takes 1 lifetime argument but 2 lifetime arguments were supplied + //~| ERROR this struct takes 0 +} |