p11.cpp revision b280638d20eb16216be38987ecd7af72c73053b4
1// RUN: clang-cc -fsyntax-only -verify %s
2
3static const int a = 10;
4
5void f0(int a,
6        int b = a) { // expected-error {{default argument references parameter 'a'}}
7}
8
9template<int a,
10         int b = a>
11class A {
12};
13