Repository URL to install this package:
|
Version:
2.13.0 ▾
|
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 "")