compiler-design-eth/javali_tests/HW4_nop90/Casts/ErrPrimitiveCast2.javali
2020-01-15 22:38:07 +01:00

11 lines
145 B
Text

// Test types in a Cast (cannot cast to unrelated type)
class Main {
void main() {
int a;
boolean b;
//b = false;
a = (int) b;
}
}