brintos

brintos / llvm-project-archived public Read only

0
0
Text · 225 B · a1cf529 Raw
13 lines · cpp
1// RUN: %clang_cc1 -fsyntax-only -verify %s2 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