mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-09 01:29:52 +00:00
9081457cbf
llvm-svn: 42611
9 lines
145 B
Objective-C
9 lines
145 B
Objective-C
// RUN: clang -fsyntax-only -verify %s
|
|
|
|
int main(void) {
|
|
const char ch = @encode(char *)[2];
|
|
char c = @encode(char *)[2] + 4;
|
|
return c;
|
|
}
|
|
|