summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/template/dependent-expr4.C
blob: b36c8729b02eac4a1a1c825e76959944d0f7afe5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// { dg-do compile }
// Origin: jbrandmeyer at users dot sourceforge dot net
// PR c++/12573: COMPONENT_REFs must be inspected for dependness.
// Or, more specifically OFFSETOF.

template <bool> struct S;

template <typename K> struct Y {
  int x;
};

template <class T> struct Z {
  S< (bool)(__builtin_offsetof (Y<T>*, x) == 0) >
    s;
};