2015-01-06 05:56:30 +00:00
|
|
|
// Copyright 2015 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.
|
|
|
|
|
2016-08-04 02:01:06 +00:00
|
|
|
// error-pattern:thread 'main' panicked at 'attempt to add with overflow'
|
2015-03-02 22:51:24 +00:00
|
|
|
// compile-flags: -C debug-assertions
|
2015-02-19 11:37:27 +00:00
|
|
|
|
2015-01-06 05:56:30 +00:00
|
|
|
fn main() {
|
2015-10-02 08:36:45 +00:00
|
|
|
let _x = 200u8 + 200u8 + 200u8;
|
2015-01-06 05:56:30 +00:00
|
|
|
}
|