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
for "build" config, import corlib common sources at unix instead (#11989)
[mono-project.git]
/
mcs
/
errors
/
cs0452-8.cs
blob
4082e45c5e79dedda48e815aa2e5ac8847315585
1
// CS0452: The type `ulong' 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
public int this
[
params
C
<
ulong
>[]
args
] {
7
set
{}
8
}
9
}
10