repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-10-22 Marek Safar <marek.safar@gmail.com>
[mcs.git]
/
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