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
Currently the following will not compile to valid Java code from FabIL:
public class Test {
public void foo() {
int[] foobar = {1, 2, 3};
}
}
The array declaration and initializer will be compiled into the following line of Java: fabric.lang.arrays.intArray foobar = fabric.lang.WrappedJavaInlineable.$wrap({1, 2, 3}); which is invalid Java code.
The text was updated successfully, but these errors were encountered:
Currently the following will not compile to valid Java code from FabIL:
The array declaration and initializer will be compiled into the following line of Java:
fabric.lang.arrays.intArray foobar = fabric.lang.WrappedJavaInlineable.$wrap({1, 2, 3});
which is invalid Java code.The text was updated successfully, but these errors were encountered: