blob: ba2a648156e848194b706423f11b1941973bf7c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// PR c++/69448
// { dg-do compile { target c++14 } }
// { dg-additional-options "-fconcepts" }
long x;
auto& f(auto) { return x; }
auto* g(auto) { return &x; }
long& r = f(1);
long* p = g(1);
|