]> git.lizzy.rs Git - rust.git/commitdiff
Adding error line so that test passes
authorSunjay Varma <varma.sunjay@gmail.com>
Sun, 26 Nov 2017 04:02:15 +0000 (23:02 -0500)
committerSunjay Varma <varma.sunjay@gmail.com>
Fri, 1 Dec 2017 06:26:29 +0000 (01:26 -0500)
src/test/ui/rfc1598-generic-associated-types/empty_generics.rs

index a80875d28b3a7a96444408deabae1474be2d8768..b12c075d1329178ca5f797339919262b8543ddc4 100644 (file)
@@ -12,6 +12,7 @@
 
 trait Foo {
     type Bar<,>;
+    //~^ ERROR expected one of `>`, identifier, or lifetime, found `,`
 }
 
 fn main() {}