/cp
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1y / mangle1.C
blob092b2fa76840b967a0aeabb48ecee16e21356f07
1 // Test that the parens don't show up in the mangling
2 // { dg-do compile { target c++14 } }
3 // { dg-options "-Wno-return-local-addr" }
4 // { dg-final { scan-assembler "_Z1gI1AEDTdtfp_1iET_" } }
6 struct A { int i; };
8 template <class T>
9 auto g(T t)->decltype((t.i)) { return t.i; }
11 int main()
13   g(A());