mirror of
https://github.com/opnsense/src.git
synced 2026-04-27 17:17:19 -04:00
8 lines
105 B
C
8 lines
105 B
C
// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
|
|
|
|
|
|
extern int A[10];
|
|
void Func(int *B) {
|
|
B - &A[5];
|
|
}
|
|
|