]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/x86stdcall.rs
Add a few more derivings to AST types
[rust.git] / src / test / run-pass / x86stdcall.rs
1 // Copyright 2012-2013 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 // GetLastError doesn't seem to work with stack switching
12
13 #[cfg(windows)]
14 mod kernel32 {
15   extern "system" {
16     pub fn SetLastError(err: uint);
17     pub fn GetLastError() -> uint;
18   }
19 }
20
21
22 #[cfg(windows)]
23 pub fn main() {
24     unsafe {
25         let expected = 1234u;
26         kernel32::SetLastError(expected);
27         let actual = kernel32::GetLastError();
28         println!("actual = {}", actual);
29         assert_eq!(expected, actual);
30     }
31 }
32
33 #[cfg(target_os = "macos")]
34 #[cfg(target_os = "linux")]
35 #[cfg(target_os = "freebsd")]
36 #[cfg(target_os = "android")]
37 pub fn main() { }