minix/external/bsd/llvm/dist/clang/test/SemaCXX/pragma-weak.cpp

9 lines
94 B
C++
Raw Normal View History

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