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

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