mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-21 12:42:39 +00:00
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() {}
|