blob: b7d39992b8fb1f7ff7257cb1e067a4f4a55e973e [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}
Nuno Lopesf75b8302009-12-23 23:40:33 +000031
32
33class xpto {
34 int blah() __attribute__((noreturn));
35};
36
37int xpto::blah() {
38 return 3; // expected-warning {{function 'blah' declared 'noreturn' should not return}}
39}