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.
|
|
|
|
|
2015-02-19 05:37:27 -06:00
|
|
|
// error-pattern:thread '<main>' panicked at 'arithmetic operation overflowed'
|
2015-03-02 16:51:24 -06:00
|
|
|
// compile-flags: -C debug-assertions
|
2015-02-19 05:37:27 -06:00
|
|
|
|
|
|
|
// (Work around constant-evaluation)
|
|
|
|
fn value() -> u8 { 42 }
|
2015-01-05 23:56:30 -06:00
|
|
|
|
|
|
|
fn main() {
|
2015-02-19 05:37:27 -06:00
|
|
|
let _x = value() - (value() + 1);
|
2015-01-05 23:56:30 -06:00
|
|
|
}
|