summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/files/pos/spec-traits.scala (renamed from test/disabled/pos/spec-traits.scala)19
1 files changed, 0 insertions, 19 deletions
diff --git a/test/disabled/pos/spec-traits.scala b/test/files/pos/spec-traits.scala
index 9e339a14ad..8b1fefe80f 100644
--- a/test/disabled/pos/spec-traits.scala
+++ b/test/files/pos/spec-traits.scala
@@ -60,24 +60,5 @@ object AA
def foo[T](x: T) = { object A; false }
}
-// issue 3292
-import scala.swing._
-import scala.swing.GridBagPanel._
-
-object Grid {
-
- def later(code : => Unit) =
- javax.swing.SwingUtilities.invokeLater(new Runnable { def run { code }})
-
- def test = later {
- val frame = new Dialog {
- contents = new GridBagPanel {
- val c = new Constraints
- }
- }
- }
-
-}
-
// issue 3325
object O { def f[@specialized T] { for(k <- Nil: List[T]) { } } }