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
Merge pull request #4202 from marek-safar/compression
[mono-project.git]
/
mcs
/
errors
/
cs1729-3.cs
blob
f8285c401a370c989047df2bd0def0477d78d478
1
// CS1729: The type `X' does not contain a constructor that takes `2' arguments
2
// Line: 8
3
4
public struct
X
{
5
public
X
(
int
i
)
{ }
6
7
public static void
Main
() {
8
X x
=
new
X
(
"foo"
,
"bar"
);
9
}
10
}