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-06-05 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0522.cs
blob
cea62462bc36dd65ab31a1b021d1468a8b15972f
1
// cs0522.cs: `SampleStruct.SampleStruct(int)': Struct constructors cannot call base constructors
2
// Line: 5
3
4
struct
SampleStruct
{
5
public
SampleStruct
(
int value
):
base
(
value
) {}
6
}
7