summaryrefslogtreecommitdiffstats
path: root/tests/ui/unsafe/issue-106126-good-path-bug.rs
blob: 93f478ee358023ba68e1f8c08125e909144fda51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// 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() {}