summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/template/ttp15.C
blob: 5bb285eb556c052b1b7b1ac07929d7da3233045d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
struct Dense {
  static const unsigned int dim = 1;
};

template <template <typename> class View,
	  typename Block>
void operator+(float, View<Block> const&);

template <typename Block,
	  unsigned int Dim = Block::dim>
struct Lvalue_proxy {
  operator float() const;
};

void
test_1d (void)
{
  Lvalue_proxy<Dense> p;
  float b;
  b + p;
}