mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
11 lines
181 B
Rust
11 lines
181 B
Rust
//@ ignore-test
|
|
|
|
// Companion to allow-in-other-module.rs
|
|
|
|
// This should not warn.
|
|
#![allow(not_a_real_lint)]
|
|
|
|
// This should not warn, either.
|
|
#[allow(not_a_real_lint)]
|
|
fn m() {}
|