diff options
| author | Mark Mansi <markm@cs.wisc.edu> | 2018-03-17 11:46:31 -0500 |
|---|---|---|
| committer | Mark Mansi <markm@cs.wisc.edu> | 2018-03-26 08:37:56 -0500 |
| commit | 07104692d5df1401fe0109fca800e4efe4e81a6c (patch) | |
| tree | e7856e54c9046533f10a6d78cd06b53a1a2adebc /src/test/ui | |
| parent | ea89b507b37e089e87af5646042b911c84656b4a (diff) | |
| download | rust-07104692d5df1401fe0109fca800e4efe4e81a6c.tar.gz rust-07104692d5df1401fe0109fca800e4efe4e81a6c.zip | |
Fix missed i128 feature gates
Diffstat (limited to 'src/test/ui')
| -rw-r--r-- | src/test/ui/feature-gate-i128_type2.rs | 34 | ||||
| -rw-r--r-- | src/test/ui/feature-gate-i128_type2.stderr | 13 |
2 files changed, 0 insertions, 47 deletions
diff --git a/src/test/ui/feature-gate-i128_type2.rs b/src/test/ui/feature-gate-i128_type2.rs deleted file mode 100644 index cd65b9d9223..00000000000 --- a/src/test/ui/feature-gate-i128_type2.rs +++ /dev/null @@ -1,34 +0,0 @@ -// 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. - -// gate-test-i128_type - -fn test1() -> i128 { - 0 -} - -fn test1_2() -> u128 { - 0 -} - -fn test3() { - let x: i128 = 0; -} - -fn test3_2() { - let x: u128 = 0; -} - -#[repr(u128)] -enum A { //~ ERROR 128-bit type is unstable - A(u64) -} - -fn main() {} diff --git a/src/test/ui/feature-gate-i128_type2.stderr b/src/test/ui/feature-gate-i128_type2.stderr deleted file mode 100644 index fe4557899ac..00000000000 --- a/src/test/ui/feature-gate-i128_type2.stderr +++ /dev/null @@ -1,13 +0,0 @@ -error[E0658]: repr with 128-bit type is unstable (see issue #35118) - --> $DIR/feature-gate-i128_type2.rs:30:1 - | -LL | / enum A { //~ ERROR 128-bit type is unstable -LL | | A(u64) -LL | | } - | |_^ - | - = help: add #![feature(repr128)] to the crate attributes to enable - -error: aborting due to 5 previous errors - -For more information about this error, try `rustc --explain E0658`. |
