link test

This commit is contained in:
Alexander Gorshenev
2016-11-18 20:43:13 +03:00
committed by alexander-gorshenev
parent 72da55623c
commit 1e87dfeb8b
4 changed files with 21 additions and 3 deletions
+7
View File
@@ -0,0 +1,7 @@
package qwerty
fun foo(a: Int): Int {
return a
}
+7
View File
@@ -0,0 +1,7 @@
package qwerty
fun foo2(a: Int): Int {
return a
}
+5
View File
@@ -0,0 +1,5 @@
package qwerty
fun bar(a: Int): Int {
return foo(foo2(a))
}