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-25.cs
blob
8e2784c4456cd4fc13b7ae2417664b6d95b0f0b8
1
// CS1525: Unexpected symbol `super', expecting `base' or `this'
2
// Line: 7
3
4
class
Bar
5
{
6
Bar
(
int
a
)
7
:
super
()
8
{
9
}
10
}