aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t2484.scala
blob: b822415fd262c55c5e10569294216fae049e741f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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 {
        class nested extends java.awt.event.ComponentAdapter {
          override def componentShown (e: java.awt.event.ComponentEvent) = {
            someFunction ();
            jScrollPane.removeComponentListener (this)
          }
        }
        new nested
      }
    }}
  }
}

// original version, with anonymous class instead of "nested"
class Admin2 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 {}) }
  }
}