Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
feature-gates
/
feature-gate-trivial_bounds-lint.rs
blob: 32445c101d79b15ee4e515bfa5967543d26d2187 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
#![
allow
(
unused
)]
#![
deny
(
trivial_bounds
)]
// Ignored without the trivial_bounds feature flag.
struct
A where i32
:
Copy
;
fn
main
()
{}