2013-07-22 Paolo Carlini <paolo.carlini@oracle.com>
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / decltype56.C
blobb44fad098fe65fe3cf46a63ed8d8c88c135831a4
1 // PR c++/52816
2 // { dg-do compile { target c++11 } }
4 class c {
5   int f;
6   public:
7   template <typename A>
8   decltype(f) m(A) const;
9 };
11 decltype(c{}.m(0)) i;