aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/template/pr39425.C
blob: a063e05c2c71fcbf9802e3c44db56c62a28bd423 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// PR c++/39425
// { dg-do compile }

class a {

  template<unsigned int s>
    struct _rec {
      static const char size = _rec< (s >> 1) >::size;
    };

  template<>	// { dg-error "explicit" }
  struct _rec <0> {
    static const char size = 0;
  };

  static const unsigned int value = _rec < 1 >::size;

}		// { dg-error "unqualified-id" }