Renamed intentions package

This commit is contained in:
Valentin Kipyatkov
2015-05-12 13:57:45 +03:00
parent 8095aabd42
commit 096df91972
142 changed files with 509 additions and 509 deletions
@@ -0,0 +1,7 @@
fun test() {
class Test{
fun get(a: Int, vararg b: Int, c: Int = 0) : Int = 0
}
val test = Test()
test[1, 3, 4, 5]
}