Index: tests/raii/partial.cfa
===================================================================
--- tests/raii/partial.cfa	(revision bad15f7b4c024353d3e0e2074c7acde3860848b9)
+++ tests/raii/partial.cfa	(revision 10b5970650e2ff3d8e757dd5c91889d466e44fe0)
@@ -12,5 +12,5 @@
     // Declaring your own empty ctor leaves an autogen dtor usable
     struct thing1 {};
-    void ?{}( thing1 & this ) {  printf( "custom ctor\n"); }
+    void ?{}( thing1 & ) {  printf( "custom ctor\n"); }
     void test1() {
         printf("test1\n");
@@ -20,6 +20,6 @@
     // Declaring your own empty ctor and dtor leaves an autogen copy ctor usable
     struct thing2 {};
-    void  ?{}( thing2 & this ) {  printf( "custom ctor\n"); }
-    void ^?{}( thing2 & this ) {  printf( "custom dtor\n"); }
+    void  ?{}( thing2 & ) {  printf( "custom ctor\n"); }
+    void ^?{}( thing2 & ) {  printf( "custom dtor\n"); }
     void test2() {
         printf("test2\n");
@@ -37,8 +37,8 @@
 
     struct thing456 {};
-    void    ?{}( thing456 & this ) {  printf( "custom ctor\n"); }
+    void    ?{}( thing456 & ) {  printf( "custom ctor\n"); }
     void    ?{}( thing456 &, thing456 ) = void;
     thing456 & ?=?( thing456 &, thing456 ) = void;
-    void   ^?{}( thing456 & this ) {  printf( "custom dtor\n"); }
+    void   ^?{}( thing456 & ) {  printf( "custom dtor\n"); }
 
     struct wrapper1 { thing456 x; };
@@ -80,5 +80,5 @@
 // Declaring your own empty ctor leaves an autogen dtor usable
 struct thing1 {};
-void ?{}( thing1 & this ) {  printf( "custom ctor\n"); }
+void ?{}( thing1 & ) {  printf( "custom ctor\n"); }
 void test1() {
     printf("test1\n");
@@ -88,6 +88,6 @@
 // Declaring your own empty ctor and dtor leaves an autogen copy ctor usable
 struct thing2 {};
-void  ?{}( thing2 & this ) {  printf( "custom ctor\n"); }
-void ^?{}( thing2 & this ) {  printf( "custom dtor\n"); }
+void  ?{}( thing2 & ) {  printf( "custom ctor\n"); }
+void ^?{}( thing2 & ) {  printf( "custom dtor\n"); }
 void test2() {
     printf("test2\n");
@@ -105,8 +105,8 @@
 
 struct thing456 {};
-void    ?{}( thing456 & this ) {  printf( "custom ctor\n"); }
+void    ?{}( thing456 & ) {  printf( "custom ctor\n"); }
 void    ?{}( thing456 &, thing456 ) = void;
 thing456 & ?=?( thing456 &, thing456 ) = void;
-void   ^?{}( thing456 & this ) {  printf( "custom dtor\n"); }
+void   ^?{}( thing456 & ) {  printf( "custom dtor\n"); }
 
 struct wrapper1 { thing456 x; };
