blob: d13053a9c4e2a4dd8e484163501605bdbe018b63 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// Testcase from P0170R1
// { dg-do compile { target c++17 } }
void g() {
const int n = 0;
[=] {
constexpr int i = n; // OK, 'n' is not odr-used and not captured here.
constexpr int j = *&n; // { dg-error "" } '&n' would be an odr-use of 'n'.
};
}
|