summaryrefslogtreecommitdiff
path: root/test/files/pos/inline-access-levels/A_1.scala
blob: 479fe0fc71637985392aa0289d61f5966b8539ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package test

object A {

  private var x: Int = 0

  @inline def actOnX(f: Int => Int) = {
    x = f(x)
  }
}