aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/other/vararg-1.C
blob: f25606e932b35fa36687e3eefa66b1e3e6da3f8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// C++/15119
//  This ICEd in substitute_placeholder_in_expr because it did not
//  implement the 4 element trees.
//  Orginal test by: <wanderer@rsu.ru>
//  Reduced by: <bangerth@dealii.org>
/* { dg-do compile } */

template<typename T> 
const T& xmin(const T& a, const T& b); 
 
void bar (char *, ...); 
 
char const* descs[4]; 
 
int main() {    
    int t = 1; 
    char buf[100]; 
    bar( buf, descs[ xmin(t-1,4) ], 0 );  
    return 0; 
}