summaryrefslogtreecommitdiff
path: root/test/files/pos/t3234.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t3234.scala')
-rw-r--r--test/files/pos/t3234.scala17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/files/pos/t3234.scala b/test/files/pos/t3234.scala
new file mode 100644
index 0000000000..8c588e5aa9
--- /dev/null
+++ b/test/files/pos/t3234.scala
@@ -0,0 +1,17 @@
+trait Trait1 {
+ @inline final def foo2(n: Int) = n*n
+}
+
+trait Trait2 {
+ @inline final def foo3(n: Int) = 1
+}
+
+class Base extends Trait1 {
+ @inline final def foo(n: Int) = n
+}
+
+object Test extends Base with Trait2 {
+ def main(args: Array[String]) = {
+ println(foo(42) + foo2(11) + foo3(2))
+ }
+}