summaryrefslogtreecommitdiff
path: root/clang/test/CXX/basic/basic.lookup/basic.lookup.unqual/p11.cpp
blob: a1cf529741b9da807d7fb63ad427f1ffdebecf15 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// RUN: %clang_cc1 -fsyntax-only -verify %s

static const int a = 10;

void f0(int a, 
        int b = a) { // expected-error {{default argument references parameter 'a'}}
}

template<int a, 
         int b = a>
class A {
};