svoid test_tok_selfType() {
testTranspilationFunction2 tok_selfType(
"class Bla { selfType x() { this; } }",
"class Bla { Bla x() { this; } }",
"class Bla { selfType x() { this; } }",
"class Bla { Bla x() { this; } }",
"interface BB { selfType x(); }",
"interface BB { BB x(); }",
);
}