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
Merge pull request #3806 from BrzVlad/feature-parallel-gc-final
[mono-project.git]
/
mcs
/
errors
/
cs0119-11.cs
blob
b65a34cecbaa43c8efa3808a67bd22c061f2b205
1
// CS0119: Expression denotes a `type parameter', where a `variable', `value' or `type' was expected
2
// Line: 15
3
4
class
A
5
{
6
public class
T
7
{
8
}
9
}
10
11
class
B
<
T
> :
A
12
{
13
void
Foo
()
14
{
15
T
.
Equals
(
null
,
null
);
16
}
17
}