blob: 83e8ae049d8d41003733677d0b05a9fd359185a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// PR c++/61135
// { dg-do compile { target c++11 } }
struct Base
{
virtual int b() const{return 1;};
};
struct Super:Base{};
int main()
{
constexpr Super s = Super();
[&]{s.b();}();
}
|