summaryrefslogtreecommitdiff
path: root/test/files/run/t4542.check
blob: 5c293a8d80ae5d0e605cf67434ca3c639851052b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Type in expressions to have them evaluated.
Type :help for more information.

scala> 

scala> @deprecated("foooo", "ReplTest version 1.0-FINAL") class Foo() {
  override def toString = "Bippy"
}
defined class Foo

scala> val f = new Foo
<console>:8: warning: class Foo is deprecated: foooo
       val f = new Foo
                   ^
f: Foo = Bippy

scala> 

scala>