mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-04 20:31:54 +00:00
19 lines
257 B
Rust
19 lines
257 B
Rust
// edition:2018
|
|
// run-rustfix
|
|
|
|
trait WithType<T> {}
|
|
trait WithRegion<'a> { }
|
|
|
|
#[allow(dead_code)]
|
|
struct Foo<T> {
|
|
t: T
|
|
}
|
|
|
|
impl<T> Foo<T>
|
|
where
|
|
T: WithType<&u32>
|
|
//~^ ERROR `&` without an explicit lifetime name cannot be used here
|
|
{ }
|
|
|
|
fn main() {}
|