blob: 0c57177b872a519bd709f31434646de283b767a0 [file] [log] [blame]
Richard Smith05afe5e2012-03-13 03:12:56 +00001// RUN: %clang_cc1 -verify %s
Andy Gibbsc6e68da2012-10-19 12:44:48 +00002// expected-no-diagnostics
Richard Smith05afe5e2012-03-13 03:12:56 +00003
4// PR12223
5namespace test1 {
6 namespace N {
Richard Smith39b79682013-06-18 20:15:12 +00007 extern "C" void f_test1(struct S*);
Richard Smith05afe5e2012-03-13 03:12:56 +00008 void g(S*);
9 }
10 namespace N {
11 void f(struct S *s) {
12 g(s);
13 }
14 }
15}
16
17// PR10447
18namespace test2 {
19 extern "C" {
Richard Smith39b79682013-06-18 20:15:12 +000020 void f_test2(struct Bar*) { }
Richard Smith05afe5e2012-03-13 03:12:56 +000021 test2::Bar *ptr;
22 }
23}