aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t2484.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pos/t2484.scala')
-rwxr-xr-xtests/pos/t2484.scala19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/pos/t2484.scala b/tests/pos/t2484.scala
new file mode 100755
index 000000000..15165c247
--- /dev/null
+++ b/tests/pos/t2484.scala
@@ -0,0 +1,19 @@
+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 {}) }
+ }
+}