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

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> :quit