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
2009-07-20 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
gcs0523-4.cs
blob
0ee0fce0c3c0dd93adbd8d5b7e5f1720233fe2b2
1
// CS0523: Struct member `S<T>.s' of type `S<int>' causes a cycle in the struct layout
2
// Line: 6
3
4
struct
S
<
T
>
5
{
6
S
<
int
>
s
;
7
}