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
[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git]
/
mcs
/
errors
/
cs8041.cs
blob
fa403dd25c5017a1813e04b1bafae2f71cc8f4b7
1
// CS8041: Primary constructor already has a body
2
// Line: 10
3
4
class
C
(
int
arg
)
5
{
6
{
7
arg
=
1
;
8
}
9
10
{
11
arg
=
2
;
12
}
13
}