blob: 5f9ab4d9c288ffa08390e06ace4ebbbfdf793d37 (
plain)
1
2
3
4
5
6
|
// PR c+++/67592
// { dg-do compile { target c++11 } }
struct S {
constexpr virtual int f() { return 1; } // { dg-error "13:member .f. can be declared both .virtual. and .constexpr." "" { target c++17_down } }
};
|