Open
Description
Welcome to Scala 2.12.1 (Java HotSpot(TM) 64-Bit Server VM, Java 1.8.0_102).
Type in expressions for evaluation. Or try :help.
scala> @deprecated("Foo is deprecated", "1.0.0")
| implicit class Foo(i: Int) { def bar = i }
defined class Foo
scala> 1.bar // Expect a warning. Actually no warning
res0: Int = 1