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