OSDN Git Service

PR c++/54858
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / static26.C
1 // PR c++/28016
2 // { dg-final { scan-assembler-not "computed" } }
3
4 template<class T1, class T2>
5 struct scalar_divides_assign {
6   static const bool computed ;
7 };
8
9 template<class T1, class T2>
10 const bool scalar_divides_assign<T1,T2>::computed = true;