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-28 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
gcs0718.cs
blob
282ff3b0312f75160ccc99cc2dbf96f8000fd4e7
1
// CS0718: `S': static classes cannot be used as generic arguments
2
// Line: 14
3
4
static class
S
5
{
6
}
7
8
class
C
<
T
>
9
{
10
}
11
12
class
Test
13
{
14
C
<
S
>
foo
;
15
}