// Two local variables in a method cannot share the same name class Main { void main() {} void test() { int a, a; } }