I’ve just found some strange behavior with platfor...
# announcements
m
I’ve just found some strange behavior with platform types and compile-time null checks.
Copy code
val p = System.getProperty(”test”)
if (p == null) {
  // do something
}

p.hashCode() // p is still a platform type here