Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
uqdwn
mjtest-tests
1ae227a0795f1a04c746c6e88dc4cd206bb371c7
1ae227a0795f1a04c746c6e88dc4cd206bb371c7
Switch branch/tag
mjtest-tests
syntax
assigning_null.mj
Find file
Normal view
History
Permalink
assigning_null.mj
109 Bytes
Edit
Web IDE
Newer
Older
Add parser testcases
uwgwb
committed
Nov 01, 2018
1
class A {
Fix assigning null
uwgwb
committed
Nov 01, 2018
2
public void nullAssigner() {
Add parser testcases
uwgwb
committed
Nov 01, 2018
3
4
5
6
7
null = this;
null = 3;
null = abc;
}
}