1function test() { 2 let a = 0; 3 switch (a) { 4 case 0: 5 const a = 0; 6 break; 7 } 8 9 print("Done"); 10} 11 12test();