Hi ( sorry for my English )
class MyClass
{}
void F()
{
// 1 - Ok!
MyClass @a = MyClass();
MyClass @b = a;
// 2 - Hard
MyClass c;
MyClass d = c;
// 3 - Very hard
MyClass @e = MyClass();
MyClass f = e; // do make me cry sometimes
}
if it possible, make possible disable 2 and 3 variant...