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
update
[mcs.git]
/
tests
/
test-545.cs
blob
48ad7e3a139e8646e746754eaec4bfc1900948ec
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
static void
Main
() {}
15
}