9 lines
168 B
Rust
9 lines
168 B
Rust
|
// Regression test for https://github.com/rust-lang/rust/issues/43134
|
||
|
|
||
|
// check-pass
|
||
|
// compile-flags: --cap-lints allow
|
||
|
|
||
|
type Foo<T: Clone> = Option<T>;
|
||
|
|
||
|
fn main() {}
|