summaryrefslogtreecommitdiff
path: root/tests/examplefiles/scala/using.scala
blob: e40d49f334a5cf876de68604d83785d5030baf24 (plain)
1
2
3
4
5
6
7
8
9
def f(using x: Int): Unit = ()
f(using 2)
f(using .2)
class A(using x: Int)
new A(using 3)
f(using ())
f(using {})
f(using ' ')
f(using "")