xxxxxxxxxx
import std.typecons;
class A {
int a;
alias a this;
this(const int a) {
this.a = a;
}
void main() {
typeof(scoped!A(0)) a = scoped!A(0);