blob: d1b02ef02813536f25c4ab9a9b3c6782a8f46abb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// PR c++/84925
// { dg-do compile { target c++17 } }
template <typename>
struct A {
static const int value = 0;
static auto constexpr fn = [] { return __func__; };
};
template <typename type>
int x = A<type>::value;
auto s = x<int>;
|