compiler-design-eth/javali_tests/HW4_nop90/Casts/ErrPrimitiveCast2.javali
Carlos Galindo 72cc3206c4
Homework 4
2020-01-15 22:34:57 +01:00

11 lines
145 B
Text
Executable file

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