mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
9 lines
149 B
Rust
9 lines
149 B
Rust
// run-pass
|
|
|
|
#![allow(unused)]
|
|
#![deny(trivial_bounds)] // Ignored without the trivial_bounds feature flag.
|
|
|
|
struct A where i32: Copy;
|
|
|
|
fn main() {}
|