1 // Negative reference variable tests.
2 // { dg-do compile { target c++11 } }
3 
4 extern int *p;
5 constexpr int& ri = *p;		// { dg-error "p" }
6 
7 extern constexpr int &er;	// { dg-error "not a definition" }
8 constexpr int& ri2 = er;	// { dg-error "er" }
9 
f(int j)10 void f(int j)
11 {
12   constexpr int i = 42;
13   constexpr int const& ri = i;	// { dg-error "" }
14 
15   constexpr int& rj = j;	// { dg-error "" }
16 }
17 
18