aboutsummaryrefslogtreecommitdiff
path: root/tests/neg/customArgs/i2002.scala
blob: 5561b77b84add8dd4105f77d2acd661c80e24bb8 (plain) (blame)
1
2
3
4
class Test {
  def foo(i: Int): Int = i
  def foo(implicit i: Int): Int = i // error
}