2014-01-15 10:53:42 +01:00

9 lines
94 B
C++

// RUN: %clang_cc1 %s
#pragma weak foo
static void foo();
extern "C" {
void foo() {
};
}