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
2009-06-05 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
gcs0308-5.cs
blob
41106dfd7f20af638a51e106b70cbfcbb6621eb2
1
// CS0308: The non-generic method `X.Foo()' cannot be used with the type arguments
2
// Line: 12
3
4
class
X
5
{
6
public void
Foo
()
7
{
8
}
9
10
void
Test
()
11
{
12
Foo
<
int
> ();
13
}
14
}