aboutsummaryrefslogtreecommitdiff
path: root/libraries/eval/test/resources/Deprecated.scala
blob: 979affbffe618fcdecb7b11a4940a76743f3bd6b (plain) (blame)
1
2
3
4
5
6
new (() => String) {
  @deprecated("don't use hello")
  def hello() = "hello"

  def apply() = hello()
}