Auto merge of #26248 - steveklabnik:remove_2061, r=alexcrichton

This test was added on Nov 1, 2012:
0069bd2f46 (diff-b516ff69faf8886c48e6f5e833c2548c)

and then ignored on the same day:
a90020fe8d (diff-b516ff69faf8886c48e6f5e833c2548c)

and never unignored again.
This commit is contained in:
bors 2015-06-13 03:29:40 +00:00
commit bfd70aaf77

View File

@ -1,26 +0,0 @@
// Copyright 2012-2014 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.
// ignore-test
// error-pattern: thread '<main>' has overflowed its stack
struct R {
b: isize,
}
impl Drop for R {
fn drop(&mut self) {
let _y = R { b: self.b };
}
}
fn main() {
let _x = R { b: 0 };
}