summaryrefslogtreecommitdiff
path: root/tests/examplefiles/scala/storage-modifiers.scala
blob: 083a59e1c620a2660dd827878a52148b8f620750 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
private object a {}
private[com] object b {}
private[com.example] object c {}
protected object d {}
protected[com] object e {}
protected[com.example] object f {}
synchronized {}
abstract class g {}
final val h = ???
lazy val i = ???
sealed trait j
implicit val k = ???
enum m {}
inline val n = ???
opaque type o = Unit
@volatile @transient @native
override def p = ???