]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc/issue-22038.rs
6f84428b0798ff36965118296d20a204c61fa4b3
[rust.git] / src / test / rustdoc / issue-22038.rs
1 // Copyright 2015 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 extern {
12     // @has issue_22038/fn.foo1.html \
13     //      '//*[@class="rust fn"]' 'pub unsafe extern fn foo1()'
14     pub fn foo1();
15 }
16
17 extern "system" {
18     // @has issue_22038/fn.foo2.html \
19     //      '//*[@class="rust fn"]' 'pub unsafe extern "system" fn foo2()'
20     pub fn foo2();
21 }
22
23 // @has issue_22038/fn.bar.html \
24 //      '//*[@class="rust fn"]' 'pub extern fn bar()'
25 pub extern fn bar() {}
26
27 // @has issue_22038/fn.baz.html \
28 //      '//*[@class="rust fn"]' 'pub extern "system" fn baz()'
29 pub extern "system" fn baz() {}