add tests for comparison of package members

Original commit: bc6746b9e6
This commit is contained in:
Michael Nedzelsky
2015-09-25 16:24:24 +03:00
parent bacc14b4c4
commit ac20dbf780
13 changed files with 104 additions and 21 deletions
@@ -0,0 +1,13 @@
package test
public fun unchangedFun() {}
public fun removedFun(): Int = 10
public val removedVal: String = "A"
public val changedVal: Int = 20
internal fun changedFun(arg: Int) {}
private fun privateRemovedFun() {}