mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 16:30:53 -05:00
8 lines
140 B
C
8 lines
140 B
C
// RUN: %clang_cc1 -emit-llvm %s -o %t
|
|
|
|
// <rdar://problem/6827047>
|
|
void f(void* arg);
|
|
void g() {
|
|
__attribute__((cleanup(f))) void *g;
|
|
}
|
|
|