OSDN Git Service

* pt.c (type_unification_real): Set input_location
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / bitfield1.C
1 // PR c++/50280
2
3 struct S { int bf : 3; };
4
5 template<class _T1>
6 void make_pair(_T1& __x) {}
7
8 void foo() {
9   const S s = S();
10   make_pair(s.bf);
11 }