aboutsummaryrefslogtreecommitdiff
path: root/res/test_const_ko.tpc
blob: 6683d01b9c331a1f8a0a64043459078e146cc25a (plain)
1
2
3
4
5
6
7
8
9
const c1 = 0;
const c2 = 0;

entier main(void) {
  entier c1;
  c1 = 0; /* expect no error */
  c2 = 0; /* expect an error */
  return 1;
}