2015-04-17 08:32:30 -05: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-03-10 13:20:09 -06:00
|
|
|
// ignore-pretty : (#23623) problems when ending with // comments
|
|
|
|
|
2016-08-03 21:01:06 -05:00
|
|
|
// error-pattern:thread 'main' panicked at 'attempt to negate with overflow'
|
2015-04-17 08:32:30 -05:00
|
|
|
// compile-flags: -C debug-assertions
|
|
|
|
|
|
|
|
fn main() {
|
2015-10-02 03:36:45 -05:00
|
|
|
let _x = -std::i8::MIN;
|
2015-04-17 08:32:30 -05:00
|
|
|
}
|