blob: caf0f4adff4a5c2f01e91f3b5b5eec2b179c40c6 [file] [log] [blame]
/* REQUIRED_ARGS: -preview=dip1000
TEST_OUTPUT:
---
fail_compilation/test22680.d(104): Error: scope variable `this` assigned to non-scope `c`
---
*/
// https://issues.dlang.org/show_bug.cgi?id=22680
#line 100
C c;
class C {
~this() @safe {
c = this;
}
}