summaryrefslogtreecommitdiff
path: root/test/scaladoc/resources/SI-8144.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/scaladoc/resources/SI-8144.scala')
-rw-r--r--test/scaladoc/resources/SI-8144.scala17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/scaladoc/resources/SI-8144.scala b/test/scaladoc/resources/SI-8144.scala
new file mode 100644
index 0000000000..7b225acb32
--- /dev/null
+++ b/test/scaladoc/resources/SI-8144.scala
@@ -0,0 +1,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"
+
+}