1 // UNSUPPORTED: system-aix, system-windows
2 // RUN: cat %s | clang-repl | FileCheck %s
4 extern "C" int printf(const char *, ...);
5 int __attribute__((weak
)) bar() { return 42; }
6 auto r4
= printf("bar() = %d\n", bar());
10 static __typeof(a
) b
__attribute__((__weakref__("a")));