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