mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
19 lines
354 B
Rust
19 lines
354 B
Rust
// revisions: rust2015 rust2018
|
|
//[rust2018] edition:2018
|
|
|
|
trait WithType<T> {}
|
|
trait WithRegion<'a> { }
|
|
|
|
struct Foo<T> {
|
|
t: T
|
|
}
|
|
|
|
impl<T> Foo<T>
|
|
where
|
|
T: WithType<&u32>
|
|
//[rust2015]~^ ERROR `&` without an explicit lifetime name cannot be used here
|
|
//[rust2018]~^^ ERROR `&` without an explicit lifetime name cannot be used here
|
|
{ }
|
|
|
|
fn main() {}
|