blob: ae614ac194d47abb96d7e8ea6cabd17e15054855 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Douglas Gregor43c79c22009-12-09 00:47:37 +00002
3// PR5620
4void f0() __attribute__((__noreturn__));
5void f1(void (*)());
6void f2() { f1(f0); }
7
8// Taking the address of a noreturn function
9void test_f0a() {
10 void (*fp)() = f0;
11 void (*fp1)() __attribute__((noreturn)) = f0;
12}
13
14// Taking the address of an overloaded noreturn function
15void f0(int) __attribute__((__noreturn__));
16
17void test_f0b() {
18 void (*fp)() = f0;
19 void (*fp1)() __attribute__((noreturn)) = f0;
20}
21
22// No-returned function pointers
23typedef void (* noreturn_fp)() __attribute__((noreturn));
24
25void f3(noreturn_fp); // expected-note{{candidate function}}
26
27void test_f3() {
28 f3(f0); // okay
29 f3(f2); // expected-error{{no matching function for call}}
30}