This repository has been archived on 2024-06-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
coffee.pygments/tests/examplefiles/scala/storage-modifiers.scala
2021-03-01 11:39:20 +01:00

17 lines
No EOL
368 B
Scala

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 = ???