c++: prvalue of array type [PR111286]
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / decltype70.C
blobb26aca90651b508dc8387ae08d28c717452d62db
1 // PR c++/90124
2 // { dg-do compile { target c++11 } }
4 class a {
5 public:
6   int b;
7 };
8 class c : a {
9   auto m_fn1() -> decltype(b);