Add stdlib test for Boolean companion

This commit is contained in:
Ilya Gorbunov
2018-07-13 21:43:53 +03:00
parent 5f3a7f0147
commit 8f6d2b70a9
@@ -71,4 +71,10 @@ class BuiltinCompanionTest {
assertSame(String, s)
}
@Test
fun booleanTest() {
val b = Boolean
assertSame(Boolean, b)
}
}