mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-15 17:10:34 -04:00
9 lines
94 B
C++
9 lines
94 B
C++
// RUN: %clang_cc1 %s
|
|
|
|
#pragma weak foo
|
|
static void foo();
|
|
extern "C" {
|
|
void foo() {
|
|
};
|
|
}
|