From: Jérémie Astor Date: Sun, 15 May 2022 22:52:03 +0000 (+0200) Subject: :wrench: Test ctor X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=db23a57694366d5a4fff3017eaeb1846e967e73c;p=gwion.git :wrench: Test ctor --- diff --git a/tests/ctor/ctor_return.gw b/tests/ctor/ctor_return.gw new file mode 100644 index 00000000..dc95d371 --- /dev/null +++ b/tests/ctor/ctor_return.gw @@ -0,0 +1,3 @@ +class C { + operator new() { return this; } +}