test: add missing lifetime in recently added test.

This commit is contained in:
Eduard-Mihai Burtescu 2017-01-27 19:03:59 +02:00
parent 9a0af1638a
commit c0e474d9a6

View file

@ -10,7 +10,7 @@
fn f() where u8 = u16 {}
//~^ ERROR equality constraints are not yet supported in where clauses
fn g() where for<'a> &(u8,) == u16, {}
fn g() where for<'a> &'static (u8,) == u16, {}
//~^ ERROR equality constraints are not yet supported in where clauses
fn main() {}