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
[sgen] Don't trigger collections during allocation of thread objects (#17970)
[mono-project.git]
/
mcs
/
errors
/
cs0452-5.cs
blob
19b3a09791c6268f9dbb9a87f2ab74c79d616ede
1
// CS0452: The type `int' must be a reference type in order to use it as type parameter `T' in the generic type or method `C<T>'
2
// Line: 10
3
4
public class
C
<
T
>
where T
:
class
5
{
6
}
7
8
class
A
9
{
10
public
A
(
ref
C
<
int
>
args
)
11
{
12
}
13
}
14