aerial.nvim/tests/treesitter/scala_test.scala
2022-08-17 18:23:59 +02:00

18 lines
195 B
Scala

object Object {
def foo(x: Int): Int = {
???
}
}
trait Trait {
def foo(x: Int): Unit
}
class Class {
def foo(x: Int): Unit = {
???
}
def bar(x: Int): Unit = {
???
}
}