We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In the benchmark from commit f8a1fca25a9ed015fb75cc4bb2f1810088cd945d directory Historia/notebooks/reachExpGPT/FragmentLF.
f8a1fca25a9ed015fb75cc4bb2f1810088cd945d
Historia/notebooks/reachExpGPT/FragmentLF
When a field is declared on a class, it sometimes doesn't handle a field pointing to null initially.
e.g. For the field field a vc requiring f.field -> null cannot be satisfied for some reason. This looks like an encoding issue.
field
f.field -> null
class Foo extends Fragment{ Object field; ... }
Workaround is to just set field to null.
class Foo extends Fragment{ Object field = null; // explicit null set. ... }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the benchmark from commit
f8a1fca25a9ed015fb75cc4bb2f1810088cd945d
directoryHistoria/notebooks/reachExpGPT/FragmentLF
.When a field is declared on a class, it sometimes doesn't handle a field pointing to null initially.
e.g. For the field
field
a vc requiringf.field -> null
cannot be satisfied for some reason. This looks like an encoding issue.Workaround is to just set field to null.
The text was updated successfully, but these errors were encountered: