errael
errael
> When you assign null_list to the variable `l`, the type of `l` changes to the type of null_list (which is list). To retain the variable type, but remove the...
[This is an unworkable solution] `typename()` takes an expression, internally a `typval_T`. The current implementation of a null `typval_T` has no member type information, like `list` vs `list`. This issue...
`typename()` takes an expression, internally a `typval_T`. The current implementation of a null `typval_T` has no member type information, like `list` vs `list`. This issue only affects `list`/`dict` (I think)....
May be related to #13696
Thanks Yarda. I've been training myself to use the wrapper, got a copy of `gw` to facilitate that. I added a note in https://github.com/gradle/gradle/issues/15942 so that searching for frgaal finds...
@konikvranik take a look at https://github.com/gradle/gradle/issues/15942. You could give it a thumbs up, comment, argue the case...
Just did a start/close of NB and am attaching the log. The first indication of trouble is ``` INFO [org.netbeans.modules.gradle.loaders.GradleProjectLoaderImpl]: Load aiming EVALUATED for Unloaded Gradle Project: GradleFiles[projectDir=/src/astro/castro/codegen/castro, rootDir=/src/astro/castro/codegen] INFO...
Just tried with RC3, sames problems
> > java.lang.IllegalArgumentException: Unsupported class file major version 61 > > That is a class build for JDK 17. My gut feeling the asm Version that complains there is to...
I didn't even think about the class file version. The project is compiled for `jdk-11`, there are some multi version jars that have something for `jdk-16`. In the main gradle...