test224
auto test224 =
q{--- test224
/// Bug with circular dependency
void main() {
Client client;
client.run(); // 1 call
}
struct Client { // 4 Client
void run() {} // 2 func signature, 3 Client* this, 5 run function, 6 func signature
}
};
tests passing
functionsvariables