aboutsummaryrefslogtreecommitdiff
path: root/test/Parser/encode.m
blob: ce12882ecf0276392c214c1ba4de40be704757c2 (plain)
1
2
3
4
5
6
7
8
// RUN: clang -fsyntax-only -verify %s

int main(void) {
  const char ch = @encode(char *)[2];
  char c = @encode(char *)[2] + 4;
  return c;
}