mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
13 lines
175 B
Rust
13 lines
175 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() {}
|