mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-03 00:47:36 +00:00
11 lines
180 B
Rust
11 lines
180 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() {}
|