comparison gcc/testsuite/g++.dg/cpp1y/auto-fn49.C @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents
children
comparison
equal deleted inserted replaced
111:04ced10e8804 131:84e7813d76e9
1 // CWG issue 2335
2 // { dg-do compile { target c++14 } }
3
4 template <class... Ts> struct partition_indices {
5 static auto compute_right () {}
6 static constexpr auto right = compute_right;
7 };
8 auto foo () -> partition_indices<>;
9 void f() {
10 auto x = foo();
11 auto y = x.right;
12 }