]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-48131.rs
Auto merge of #53027 - matklad:once_is_completed, r=alexcrichton
[rust.git] / src / test / ui / issues / issue-48131.rs
1 // Copyright 2018 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // This note is annotated because the purpose of the test
12 // is to ensure that certain other notes are not generated.
13 #![deny(unused_unsafe)] //~ NOTE
14
15 // (test that no note is generated on this unsafe fn)
16 pub unsafe fn a() {
17     fn inner() {
18         unsafe { /* unnecessary */ } //~ ERROR unnecessary `unsafe`
19                                      //~^ NOTE
20     }
21
22     inner()
23 }
24
25 pub fn b() {
26     // (test that no note is generated on this unsafe block)
27     unsafe {
28         fn inner() {
29             unsafe { /* unnecessary */ } //~ ERROR unnecessary `unsafe`
30                                          //~^ NOTE
31         }
32
33         let () = ::std::mem::uninitialized();
34
35         inner()
36     }
37 }
38
39 fn main() {}