repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs1525-14.cs
blob
fde8fb71ab4beea217389a001b2978b7c564a60a
1
// CS1525: Unexpected symbol `=', expecting `.' or `['
2
// Line: 8
3
4
class
DerivedClass
5
{
6
public
DerivedClass
()
7
{
8
base
=
null
;
9
}
10
}
11