about summary refs log tree commit diff
path: root/src/tools/miri/tests/fail/deny_lint.rs
blob: f49fa49d09d5e6070def6504d29411dbb6b2259c (plain)
1
2
3
4
5
6
7
8
//@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() {}