mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
12 lines
269 B
Rust
12 lines
269 B
Rust
// We used to ICE here while trying to synthesize auto trait impls.
|
|
// issue: 123370
|
|
//@ check-pass
|
|
|
|
pub struct Inner<'a, Q>(&'a (), Q);
|
|
|
|
pub struct Outer<'a, Q>(Inner<'a, Q>);
|
|
|
|
impl<'a, Q: Trait<'a>> std::marker::Unpin for Inner<'static, Q> {}
|
|
|
|
pub trait Trait<'a> {}
|