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
2007-03-19 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
cs0523.cs
blob
219954430cd484d49f91a0e334d717768b96f1be
1
// cs0523.cs: Struct member `B.a' of type `A' causes a cycle in the struct layout
2
// Line: 9
3
4
struct
A
{
5
B b
;
6
}
7
8
struct
B
{
9
A a
;
10
}
11
12
class
Y { static void Main () {}
}