I am a bit confused about how to use object handle. Here is the code example I was trying to compile with the add-on array:
class Obj {
int x;
};
void main() {
array<Obj@> a(3);
Obj o;
o.x = 10;
a[0] = @o;
}
The compile error is "Can't implicitly convert from 'Obj@const&' to 'const Obj&'." for the assign line.
What is the correct way of doing that?