compiler-design-eth/javali_tests/HW3_nop90/DoubleDeclarationsErrors/DoubleParams.javali
Carlos Galindo 0afc86ceeb
Homework 3
2020-01-15 22:32:25 +01:00

6 lines
159 B
Text

// No pair of parameters in a method declaration can have the same name
class Main {
void main() {}
int action(int p1, boolean p2, Object p, Object p) {}
}