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
2010-04-15 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
gcs0723.cs
blob
8ddfca411e8b488f0604c1678d10e427f1eee55d
1
// CS0723: `C<T>.t': cannot declare variables of static types
2
// Line: 10
3
4
static class
S
<
T
>
5
{
6
}
7
8
public class
C
<
T
>
9
{
10
S
<
T
>
t
;
11
}