repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
gcs0307.cs
blob
d73dec8c6b383e91e2c426b9afd53948c6e6c4fa
1
// CS0307: The property `B.Get' cannot be used with type arguments
2
// Line: 14
3
public class
B
4
{
5
public virtual int
Get
{
6
get
{ return 3; }
7
}
8
}
9
10
public class
A
:
B
11
{
12
public override int
Get
{
13
get
{
14
return base
.
Get
<
int
>;
15
}
16
}
17
18
public static void
Main
()
19
{
20
}
21
}