aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/hashhash-overloads.scala
blob: a27cb130159f151c90dafa9680b82475cc81b595 (plain) (blame)
1
2
3
4
5
6
7
8
object Test {
  def f = ().##
  def g = 5f.##
  def h = ({ 5 ; println("abc") }).##
  def f2 = null.##
  def l = 3L.##
  def b(arg: Boolean) = arg.##
}