blob: b6dfffbd69ebb6db40e7be53ff230e9ff4e3b31f [file] [log] [blame]
// compile-pass
// pretty-expanded FIXME #23616
#![allow(dead_code)]
trait Foo<T> {
fn noop(&self, _: T);
}
enum Bar<T> { Bla(T) }
struct Baz<'a> {
inner: for<'b> Foo<Bar<&'b ()>> + 'a,
}
fn main() {}