summaryrefslogtreecommitdiff
path: root/test/files/neg/t4749.check
blob: 3539140954cd93fcba70ff3b8f9606df3ce5a5db (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
t4749.scala:2: warning: Fail1 has a main method with parameter type Array[String], but bippy.Fail1 will not be a runnable program.
  Reason: main method must have exact signature (Array[String])Unit
  object Fail1 {
         ^
t4749.scala:6: warning: Fail2 has a main method with parameter type Array[String], but bippy.Fail2 will not be a runnable program.
  Reason: main methods cannot be generic.
  object Fail2 {
         ^
t4749.scala:13: warning: Fail3 has a main method with parameter type Array[String], but bippy.Fail3 will not be a runnable program.
  Reason: main methods cannot refer to type parameters or abstract types.
  object Fail3 extends Bippy[Unit] { }
         ^
t4749.scala:16: warning: Fail4 has a main method with parameter type Array[String], but bippy.Fail4 will not be a runnable program.
  Reason: companion is a trait, which means no static forwarder can be generated.

  object Fail4 {
         ^
t4749.scala:21: warning: Fail5 has a main method with parameter type Array[String], but bippy.Fail5 will not be a runnable program.
  Reason: companion contains its own main method, which means no static forwarder can be generated.

  object Fail5 extends Fail5 { }
         ^
t4749.scala:26: warning: Fail6 has a main method with parameter type Array[String], but bippy.Fail6 will not be a runnable program.
  Reason: companion contains its own main method (implementation restriction: no main is allowed, regardless of signature), which means no static forwarder can be generated.

  object Fail6 {
         ^
t4749.scala:42: warning: Win3 has a main method with parameter type Array[String], but bippy.Win3 will not be a runnable program.
  Reason: main method must have exact signature (Array[String])Unit
  object Win3 extends WinBippy[Unit] { }
         ^
error: No warnings can be incurred under -Xfatal-warnings.
7 warnings found
one error found