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
[metadata] Use MONO_PROFILER_API on MonoClass getters in checked builds (#20440)
[mono-project.git]
/
mcs
/
errors
/
cs0718.cs
blob
828b2512eeff100feff74f46e8e6da23e0ab0279
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
}