Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mjtest-tests
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Package Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
IPDSnelting
mjtest-tests
Commits
21d4e131
Commit
21d4e131
authored
Nov 15, 2018
by
Christian Schwarz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix complaints from PR review
parent
9317e4cf
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
semantic/if_else_type_mismatch.invalid.java
semantic/if_else_type_mismatch.invalid.java
+1
-1
semantic/missing_main.invalid.java
semantic/missing_main.invalid.java
+1
-1
semantic/namespaces.java
semantic/namespaces.java
+2
-2
semantic/void_field.invalid.java
semantic/void_field.invalid.java
+1
-1
No files found.
semantic/if_else_type_mismatch.invalid.java
View file @
21d4e131
class
IfElseTypeMismatch
{
public
static
void
main
(
String
[]
args
)
{
foo
(
true
)
foo
(
true
)
;
}
public
int
foo
(
boolean
b
)
{
...
...
semantic/missing_main.invalid.java
View file @
21d4e131
class
MissingMain
{
int
x
;
public
int
x
;
public
void
foo
()
{}
}
semantic/namespaces.java
View file @
21d4e131
class
Foo
{
Foo
Foo
;
public
Foo
Foo
;
Foo
Foo
(
Foo
Foo
)
{
public
Foo
Foo
(
Foo
Foo
)
{
Foo
.
Foo
=
new
Foo
();
return
Foo
;
}
...
...
semantic/void_field.invalid.java
View file @
21d4e131
class
VoidField
{
void
foo
;
public
void
foo
;
public
static
void
main
(
String
[]
args
)
{
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment