forked from OSchip/llvm-project
9 lines
145 B
Mathematica
9 lines
145 B
Mathematica
|
// RUN: clang -fsyntax-only -verify %s
|
||
|
|
||
|
int main(void) {
|
||
|
const char ch = @encode(char *)[2];
|
||
|
char c = @encode(char *)[2] + 4;
|
||
|
return c;
|
||
|
}
|
||
|
|