summaryrefslogtreecommitdiff
path: root/test/files/jvm5/annotations.check
blob: 918109b42f5f9324f0d10eb2e647c7630cb56f53 (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
41
42
43
44
45
46
47
48
/Users/adriaan/src/scala/trunk/test/files/jvm5/annotations.scala:133: warning: type Integer in object Predef is deprecated
    private var count: Integer = 0
                       ^
/Users/adriaan/src/scala/trunk/test/files/jvm5/annotations.scala:138: warning: type Integer in object Predef is deprecated
      getClass().getMethod("setCount", Array[java.lang.Class](classOf[Integer]))
                                                                      ^
/Users/adriaan/src/scala/trunk/test/files/jvm5/annotations.scala:140: warning: type Integer in object Predef is deprecated
    def get = getter.invoke(this, Array()).asInstanceOf[Integer].intValue
                                                        ^
/Users/adriaan/src/scala/trunk/test/files/jvm5/annotations.scala:141: warning: type Integer in object Predef is deprecated
    def set(n: Int) = setter.invoke(this, Array(new Integer(n)))
                                                    ^
four warnings found
class java.rmi.RemoteException
class java.io.IOException
@java.lang.Deprecated()
@test.SourceAnnotation(mails={scala@lists.epfl.ch,scala-lounge@lists.epfl.ch}, value=http://scala-lang.org)
class Test4$Foo1

@test.SourceAnnotation(mails={you@bloodsuckers.com}, value=http://bloodsuckers.com)
class Test4$Foo2

@test.SourceAnnotation(mails={bill.gates@bloodsuckers.com}, value=http://bloodsuckers.com)
class Test4$Foo3

@test.SourceAnnotation(mails={bill.gates@bloodsuckers.com}, value=file:///dev/null)
private int Test4$Foo4.x

@test.SourceAnnotation(mails={bill.gates@bloodsuckers.com}, value=file:///dev/null)
public int Test4$Foo4.x()

@test.SourceAnnotation(mails={bill.gates@bloodsuckers.com}, value=file:///dev/zero)
public int Test4$Foo5.bar()

@test.SourceAnnotation(mails={bill.gates@bloodsuckers.com}, value=primary constructor)
public Test4$Foo6(java.lang.String)

@test.SourceAnnotation(mails={bill.gates@bloodsuckers.com}, value=secondary constructor)
public Test4$Foo7()

@test.SourceAnnotation(mails={bill.gates@bloodsuckers.com}, value=constructor val)
private int Test4$Foo8.n

@test.SourceAnnotation(mails={bill.gates@bloodsuckers.com}, value=constructor val)
public int Test4$Foo8.n()

0
99