mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
13 lines
173 B
Rust
13 lines
173 B
Rust
|
// Regression test for #106126.
|
||
|
// check-pass
|
||
|
// aux-build:issue-106126.rs
|
||
|
|
||
|
#![deny(unsafe_op_in_unsafe_fn)]
|
||
|
|
||
|
#[macro_use]
|
||
|
extern crate issue_106126;
|
||
|
|
||
|
foo!();
|
||
|
|
||
|
fn main() {}
|