IR: minor, deduplicate unbound symbol in error message

This commit is contained in:
Alexander Udalov
2020-11-25 17:09:42 +01:00
parent bf4f2605d4
commit b10e206144
@@ -1119,7 +1119,7 @@ fun SymbolTable.noUnboundLeft(message: String) {
assert(unbound.isEmpty()) {
"$message\n" +
unbound.joinToString("\n") {
"$it ${it.signature?.toString() ?: "NON-PUBLIC API $it"}"
"$it ${it.signature?.toString() ?: "(NON-PUBLIC API)"}"
}
}
}