Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Joshua Bachmeier
mjtest-tests
53b973c338c136de2723fba11db0dd43c98e7cc5
53b973c338c136de2723fba11db0dd43c98e7cc5
Switch branch/tag
mjtest-tests
syntax
missing_semicolons.invalid.mj
Find file
Normal view
History
Permalink
missing_semicolons.invalid.mj
126 Bytes
Edit
Web IDE
Newer
Older
Add syntax testcases from group 1
ufebl
committed
Oct 31, 2018
1
2
3
4
5
6
7
8
class MissingSemicolons {
public void FOO () {
;
if (a[a] == b) true
else false
;
}
}