Skip to content

Commit 28a3038

Browse files
committed
Add test
1 parent 3c21d8b commit 28a3038

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
2+
object Test {
3+
def main(args: Array[String]): Unit = {
4+
new Foo
5+
}
6+
}
7+
8+
final class Foo extends Bar[Int]
9+
10+
trait Bar[T] {
11+
val value: Int = 42
12+
}

0 commit comments

Comments
 (0)