From 106a40885dd6411cbcdd601d936235a191bcc89b Mon Sep 17 00:00:00 2001
From: Steve Klabnik <steve@steveklabnik.com>
Date: Fri, 12 Jun 2015 13:02:50 -0400
Subject: [PATCH] Remove ignored test for #2061

This test was added on Nov 1, 2012:
https://github.com/rust-lang/rust/commit/0069bd2f4612b744ab3731b4c1db13c2f3202185#diff-b516ff69faf8886c48e6f5e833c2548c

and then ignored on the same day:
https://github.com/rust-lang/rust/commit/a90020fe8dd8be8615df82e6294408bfed82a767#diff-b516ff69faf8886c48e6f5e833c2548c

and never unignored again.
---
 src/test/run-fail/issue-2061.rs | 26 --------------------------
 1 file changed, 26 deletions(-)
 delete mode 100644 src/test/run-fail/issue-2061.rs

diff --git a/src/test/run-fail/issue-2061.rs b/src/test/run-fail/issue-2061.rs
deleted file mode 100644
index 252ac9bcac0..00000000000
--- a/src/test/run-fail/issue-2061.rs
+++ /dev/null
@@ -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 };
-}