Sign in
rust
/
rust
/
refs/heads/lcnr/rustc-dev-guide
/
.
/
src
/
tools
/
miri
/
tests
/
fail
/
deny_lint.rs
blob: f49fa49d09d5e6070def6504d29411dbb6b2259c [
file
] [
log
] [
blame
]
//@error-in-other-file: miri cannot be run on programs that fail compilation
#![
deny
(
warnings
,
unused
)]
struct
Foo
;
//~^ ERROR: struct `Foo` is never constructed
fn
main
()
{}