Skip to content

Commit

Permalink
add test for edition 2018
Browse files Browse the repository at this point in the history
  • Loading branch information
csmoe committed Sep 23, 2018
1 parent 4516ba7 commit 6523eab
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/test/ui/editions/edition-deny-overflowing-literals-2018.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
// Copyright 2012 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.

// edition:2018

fn main() {
let x: u8 = 256;
//~^ error: literal out of range for u8
}
10 changes: 10 additions & 0 deletions src/test/ui/editions/edition-deny-overflowing-literals-2018.stderr
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
error: literal out of range for u8
--> $DIR/edition-deny-overflowing-literals-2018.rs:14:17
|
LL | let x: u8 = 256;
| ^^^
|
= note: #[deny(overflowing_literals)] on by default

error: aborting due to previous error

0 comments on commit 6523eab

Please sign in to comment.