mirror of
https://github.com/opnsense/src.git
synced 2026-02-27 20:01:13 -05:00
8 lines
148 B
Objective-C
8 lines
148 B
Objective-C
// RUN: clang-cc -fsyntax-only -verify %s
|
|
|
|
int main(void) {
|
|
const char ch = @encode(char *)[2];
|
|
char c = @encode(char *)[2] + 4;
|
|
return c;
|
|
}
|
|
|