OSDN Git Service

2012-12-15 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / decltype24.C
1 // PR c++/47068
2 // { dg-options -std=c++0x }
3
4 template <class T> struct broken {
5   int member;
6   typedef decltype(~ member) gcc_crashes_here;
7 };