summaryrefslogtreecommitdiff
path: root/test/files/neg/t5761.check
blob: 2d66af26f6524113ad4114a5106374e13936bcb6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
t5761.scala:4: error: not enough arguments for constructor D: (x: Int)D[Int].
Unspecified value parameter x.
  println(new D[Int]{})   // crash
              ^
t5761.scala:8: error: not enough arguments for constructor D: (x: Int)D[Int].
Unspecified value parameter x.
  println(new D[Int]())   // no crash
          ^
t5761.scala:9: error: not enough arguments for constructor D: (x: Int)D[Int].
Unspecified value parameter x.
  println(new D[Int]{})   // crash
              ^
t5761.scala:13: error: not found: type Tread
  new Tread("sth") { }.run()
      ^
t5761.scala:13: error: value run is not a member of AnyRef
  new Tread("sth") { }.run()
                       ^
5 errors found