brintos

brintos / llvm-project-archived public Read only

0
0
Text · 177 B · 056cee1 Raw
10 lines · plain
1// RUN: %clang_cc1 -fsyntax-only -verify %s2// expected-no-diagnostics3 4int main(void) {5  const char ch = @encode(char *)[0];6  char c = @encode(char *)[0] + 4;7  return c;8}9 10