[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / CXX / basic / basic.lookup / basic.lookup.unqual / p11.cpp
bloba1cf529741b9da807d7fb63ad427f1ffdebecf15
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
3 static const int a = 10;
5 void f0(int a,
6 int b = a) { // expected-error {{default argument references parameter 'a'}}
9 template<int a,
10 int b = a>
11 class A {