aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/non-dependent14.C
blob: b257d9baf1a7a69ec540934ba1d4d4f942deba24 (plain)
1
2
3
4
5
6
7
// PR c++/64251

class DictionaryValue {};
template <typename T> void CreateValue(T) {
  DictionaryValue(0);
  CreateValue(0);
}