18458, "bradcray", "Support sync/single types of non-nilable classes", "2021-09-24T23:01:06Z"
As a Chapel programmer, I would ideally like to be able to create sync/single variables of
non-nilable class type. So, effectively:
class C {
var x: int;
}
var s: sync(owned C) = new C(42);
writeln(s.readFF());