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
/
cs0307-5.cs
blob
6fa38ba3026249d0a83bf07ef6602ab382889c02
1
// CS0307: The property `Test<T,U>.Value' cannot be used with type arguments
2
// Line: 16
3
4
class
Test
<
T
,
U
>
5
{
6
public object
Value
{
7
get
{ return null; }
8
}
9
10
public class
B
11
{
12
public
B
(
object
arg
)
13
{
14
}
15
16
public static
B Default
=
new
B
(
Value
<
U
>.
Default
);
17
}
18
}