Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unexpected error with dynamic spawn before subtype declaration #133

Open
JoaoSamp opened this issue Sep 12, 2018 · 0 comments
Open

Unexpected error with dynamic spawn before subtype declaration #133

JoaoSamp opened this issue Sep 12, 2018 · 0 comments

Comments

@JoaoSamp
Copy link

data IFoo;

code/await/dynamic Foo_Action(var&/dynamic IFoo foo) -> none
do
end

code/await Spawn_Foo( var& IFoo foo ) -> none
do
	spawn/dynamic Foo_Action(&foo);
end

data IFoo.Foo2;

code/await/dynamic Foo_Action(var&/dynamic IFoo.Foo2 foo) -> none
do
	await 2s;
end

var IFoo.Foo2 foo2 = val IFoo.Foo2();
spawn Spawn_Foo(&foo2);
await FOREVER;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant