blob: 01629aaca80d4cb5247de7e1e031e8570389cf02 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// compile-flags:-D renamed-and-removed-lints -D bare_trait_object
// error-pattern:lint `bare_trait_object` has been renamed to `bare_trait_objects`
// error-pattern:use the new name `bare_trait_objects`
// error-pattern:requested on the command line with `-D bare_trait_object`
// error-pattern:requested on the command line with `-D renamed-and-removed-lints`
// error-pattern:unused
#[deny(unused)]
fn main() { let unused = (); }
|