summaryrefslogtreecommitdiff
path: root/test/scaladoc/resources/SI-8144.scala
blob: 7b225acb3266d6a09a9b0783b1119233651c1de1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package some.pack

class SomeType(arg: String) {

  type TypeAlias = String

  def >@<(): TypeAlias = "Tricky method name"

  def >#<(): Int = 1

}

object SomeType {

  val someVal = "Some arbitrary companion object value"

}