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
[cominterop] Default to [in] parameter direction when not specified explicitly.
[mono-project.git]
/
mcs
/
errors
/
cs0452.cs
blob
b6a800618241a8fce74b1d86acca01fcb48138c9
1
// CS0452: The type `Foo' must be a reference type in order to use it as type parameter `T' in the generic type or method `MyObject<T>'
2
// Line: 13
3
public class
MyObject
<
T
>
4
where T
:
class
5
{ }
6
7
struct
Foo
8
{ }
9
10
class
X
11
{
12
MyObject
<
Foo
>
foo
;
13
14
static void
Main
()
15
{ }
16
}