aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorGuillaume Martres <smarter@ubuntu.com>2016-10-25 17:54:27 +0200
committerGitHub <noreply@github.com>2016-10-25 17:54:27 +0200
commitf1284b48d48ec16840e3e018e060edc50d4d1bb7 (patch)
tree94a7cb92bfc0d55927699447a577421851409f52 /tests
parent0cd907da01671c510025a610cea9ab117c8f1ae4 (diff)
parent652cce0b0ad1b8b54f54a5d78a6c4defbd599124 (diff)
downloaddotty-f1284b48d48ec16840e3e018e060edc50d4d1bb7.tar.gz
dotty-f1284b48d48ec16840e3e018e060edc50d4d1bb7.tar.bz2
dotty-f1284b48d48ec16840e3e018e060edc50d4d1bb7.zip
Merge pull request #1599 from dotty-staging/fix-#1570
Fix #1570: Allow inline parameters as inline args
Diffstat (limited to 'tests')
-rw-r--r--tests/pos/i1570.scala4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/pos/i1570.scala b/tests/pos/i1570.scala
new file mode 100644
index 000000000..c2e4fd01b
--- /dev/null
+++ b/tests/pos/i1570.scala
@@ -0,0 +1,4 @@
+object Test {
+ inline def foo(inline n: Int) = bar(n)
+ inline def bar(inline n: Int) = n
+}