1// Can't assign to type
2
3int func() {
4    const int a[10] = {1,2,3,4,5,6,7,8,9,10};
5    a[0] = 1;
6}
7