aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/ext/pr53605.C
blob: 0b902dd844e761a10ffdf1cc31ccaeab0a8d6db8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// { dg-do compile }

// Avoid -pedantic-error default
// { dg-options "" }

template <bool lhs_is_null_literal>
class EqHelper {
public:
    template <typename T1, typename T2>
	static int  Compare( const T1& expected,
			     const T2& actual);
};
void foo(){
    static const int kData[] = {};
    ::EqHelper<false>::Compare(kData, "abc");
}