summaryrefslogtreecommitdiff
path: root/tests/error_type_mismatch.c
blob: ad43f975af83ae01fb698ebec680034fcf4682b8 (plain)
1
2
3
4
5
6
7
8
9
char getChar() {
  return 'a';
}


int main() {
  int x = "hello";
  return getChar();
}