You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
error: @Burst parameter must be a boolean, an enum, or have a burstValues() default value
There’s two problems:
The compiler generates an overriding function (origin=FAKE_OVERRIDE) declared by the subtype
That generated override maintains @Test but drops all the parameter defaults
This might be exacerbated by supertypes that have type parameters? I’m not completely sure.
We should probably detect Burst functions that are fake overrides, and strip the @Test from them. It’s annoying to have to do this because I would have preferred @Test to be stripped before the fake overrides were generated.
The text was updated successfully, but these errors were encountered:
I’m seeing this failure building the subclass.
There’s two problems:
origin=FAKE_OVERRIDE
) declared by the subtype@Test
but drops all the parameter defaultsThis might be exacerbated by supertypes that have type parameters? I’m not completely sure.
We should probably detect Burst functions that are fake overrides, and strip the
@Test
from them. It’s annoying to have to do this because I would have preferred@Test
to be stripped before the fake overrides were generated.The text was updated successfully, but these errors were encountered: