summaryrefslogtreecommitdiffstats
path: root/clang/test/CXX/basic/basic.lookup/basic.lookup.unqual/p15.cpp
blob: c59c4a550d7a25e7f53d01d186384c16e9b6bfa5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// RUN: %clang_cc1 -fexceptions -fcxx-exceptions -fsyntax-only -verify %s

class C {
public:
  C(int a, int b);
};

C::C(int a, // expected-note {{previous definition}}
     int b) // expected-note {{previous definition}}
try {
  int c;
} catch (int a) { // expected-error {{redefinition of 'a'}}
  int b; // expected-error {{redefinition of 'b'}}
  ++c; // expected-error {{use of undeclared identifier 'c'}}
}

void f(int i) {
  struct S {
    void g() try {} catch (int i) {}; // OK
  };
}
OpenPOWER on IntegriCloud