about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorest31 <MTest31@outlook.com>2016-12-26 17:20:33 +0100
committerest31 <MTest31@outlook.com>2016-12-30 15:19:51 +0100
commitd166ee96649bddf88f8496733562c49b986d4ef1 (patch)
tree998d8fc27f723652319d76b7e227f4bfb4397ab8 /src
parent86ce3a2f7c1b9bcd342f5a0212383e5b2711f5f6 (diff)
downloadrust-d166ee96649bddf88f8496733562c49b986d4ef1.tar.gz
rust-d166ee96649bddf88f8496733562c49b986d4ef1.zip
Add test to ensure unadjusted stays unstable
Diffstat (limited to 'src')
-rw-r--r--src/test/compile-fail/unadjusted-unstable.rs17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/test/compile-fail/unadjusted-unstable.rs b/src/test/compile-fail/unadjusted-unstable.rs
new file mode 100644
index 00000000000..501f4451ed8
--- /dev/null
+++ b/src/test/compile-fail/unadjusted-unstable.rs
@@ -0,0 +1,17 @@
+// Copyright 2016 The Rust Project Developers. See the COPYRIGHT
+// file at the top-level directory of this distribution and at
+// http://rust-lang.org/COPYRIGHT.
+//
+// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
+// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
+// option. This file may not be copied, modified, or distributed
+// except according to those terms.
+
+extern "unadjusted" fn foo() {
+//~^ ERROR: unadjusted ABI is an implementation detail and perma-unstable
+}
+
+fn main() {
+    foo();
+}