Do not include buildSrc module dependencies into script dependencies (KT-30295)

^KT-30295 Fixed
This commit is contained in:
Natalia Selezneva
2019-04-03 11:04:11 +03:00
parent aa99d8fcbe
commit 97531c8ec2
9 changed files with 94 additions and 14 deletions
@@ -0,0 +1,2 @@
val a: Int? = 1 // RESULT: val a: Int?
kotlin.test.assertNotNull(1) // RESULT: 1
+2
View File
@@ -0,0 +1,2 @@
val a: Int? = 1
kotlin.test.assertNotNull(1)
@@ -0,0 +1,2 @@
val a: Int? = 1
kotlin.test.assertNotNull(1) // RESULT: res1: kotlin.Int = 1