Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
feature-gates
/
feature-gate-trivial_bounds-lint.rs
blob: 32445c101d79b15ee4e515bfa5967543d26d2187 [
file
] [
log
] [
blame
]
//@ run-pass
#![
allow
(
unused
)]
#![
deny
(
trivial_bounds
)]
// Ignored without the trivial_bounds feature flag.
struct
A where i32
:
Copy
;
fn
main
()
{}