aboutsummaryrefslogtreecommitdiff
path: root/src/test/compile-fail/native-makes-unsafe.rs
blob: d6e77b0d991002a1a3f82a294b4aa6a707800819 (plain) (blame)
1
2
3
4
5
6
7
8
9
// error-pattern: calculated effect is 'unsafe'

native mod foo {
  fn naughty();
}

fn main() {
  foo.naughty();
}