Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cs444
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Xun Yang
cs444
Merge requests
!22
Subtype test
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Subtype test
subtype-test
into
master
Overview
0
Commits
7
Pipelines
0
Changes
8
Merged
Xun Yang
requested to merge
subtype-test
into
master
5 years ago
Overview
0
Commits
7
Pipelines
0
Changes
8
Expand
0
0
Merge request reports
Viewing commit
0b1d1065
Prev
Next
Show latest version
8 files
+
215
−
15
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
8
Search (e.g. *.vue) (Ctrl+P)
0b1d1065
Merge branch 'master' into 'subtype-test'
· 0b1d1065
Xun Yang
authored
5 years ago
# Conflicts: # AstBuilding.py
Tests/A5/J1_02_Array_Creation.java
0 → 100644
+
10
−
0
Options
public
class
J1_02_Array_Creation
{
public
int
i
=
5
;
public
J1_02_Array_Creation
(){}
public
static
int
test
(){
J1_02_Array_Creation
[]
array
=
new
J1_02_Array_Creation
[
10
];
array
[
0
]
=
new
J1_02_Array_Creation
();
array
[
9
]
=
new
J1_02_Array_Creation
();
return
array
[
0
].
i
;
}
}
\ No newline at end of file
Loading