aboutsummaryrefslogtreecommitdiff
path: root/tests/new/t2484.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/new/t2484.scala')
-rwxr-xr-xtests/new/t2484.scala19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/new/t2484.scala b/tests/new/t2484.scala
deleted file mode 100755
index 15165c247..000000000
--- a/tests/new/t2484.scala
+++ /dev/null
@@ -1,19 +0,0 @@
-import concurrent.ExecutionContext.Implicits.global
-
-class Admin extends javax.swing.JApplet {
- val jScrollPane = new javax.swing.JScrollPane (null, 0, 0)
- def t2484: Unit = {
- scala.concurrent.Future {jScrollPane.synchronized {
- def someFunction () = {}
- //scala.concurrent.ops.spawn {someFunction ()}
- jScrollPane.addComponentListener (new java.awt.event.ComponentAdapter {override def componentShown (e: java.awt.event.ComponentEvent) = {
- someFunction (); jScrollPane.removeComponentListener (this)}})
- }}
- }
-}
-// t2630.scala
-object Test {
- def meh(xs: List[Any]): Unit = {
- xs map { x => (new AnyRef {}) }
- }
-}