aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/init/reference2.C
blob: 08d3d97c998ab9639a729c890bbd06a6a053b560 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// { dg-do compile }
// This code used to be accepted but it is invalid as there is no
// value initialization of a reference type.
// PR c++/36695

// We should we able to diagnostic this without instantiating the template
template <int a1>
void f()
{
  typedef int& T;
  T a = T();  // { dg-error "9:invalid value-initialization of reference" }
}