[lld][WebAssembly] Reinstate mistakenly disabled test. NFC
[llvm-project.git] / clang / test / SemaCXX / pragma-weak.cpp
blobc1ff2062fcfa2dca58643be036c3d0f540d20b4b
1 // RUN: %clang_cc1 %s
3 #pragma weak foo
4 static void foo();
5 extern "C" {
6 void foo() {
7 };
10 extern "C" int Test;
11 #pragma weak test = Test