Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/langtools/tools/javac/6491592/T6491592.java
41152 views
1
/*
2
* @test /nodynamiccopyright/
3
* @bug 6491592
4
* @summary Compiler crashes on assignment operator
5
* @author alex.buckley@...
6
* @compile/fail/ref=T6491592.out -XDrawDiagnostics T6491592.java
7
*/
8
9
public class T6491592 {
10
public static void main(String... args) {
11
Object o = null;
12
o += null;
13
}
14
}
15
16