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 #1861 from saper/home-override
[mono-project.git]
/
mcs
/
tests
/
test-545.cs
blob
a9c54ff07027069f408ad5c7e40eafcf2b860baf
1
//
2
// It is legal to call the this() constructor
3
// on structures.
4
//
5
6
struct
Dingus
{
7
public
Dingus
(
int
a
) :
this
()
8
{
9
}
10
11
}
12
13
class
X
{
14
public static void
Main
() {}
15
}