blob: 141f63b6f2f241b4f9813aa934791d28a7e53d27 [file]
#include <cassert>
#include <cstdio>
struct Foo {
double bar() { return 5.0; }
int bar() const { return 2; }
int non_const_method() {
auto x = bar();
assert(x == 5.0);
std::puts("Break: non_const_method begin");
[x] {
std::puts("Keep on multiple lines...");
std::puts("Break: non_const_method no-this lambda");
}();
[x]() mutable {
std::puts("Keep on multiple lines...");
std::puts("Break: non_const_method mutable no-this lambda");
}();
[this, y = x] {
auto x = bar() + y;
std::puts("Break: non_const_method lambda");
}();
[this, y = x]() mutable {
auto x = bar() + y;
std::puts("Break: non_const_method mutable lambda");
}();
return 120;
}
float m_mem = -2.0;
const float m_const_mem = -3.0;
};
int main() {
const Foo f;
f.bar();
Foo f2;
f2.bar();
return Foo{}.non_const_method();
}