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
Fixes the mono/tests/gc-graystack-stress test on Windows x64
[mono-project.git]
/
mcs
/
errors
/
cs0308-7.cs
blob
bdcb6c221e67d0ba58760d643c395b879d3c3a6f
1
// CS0308: The non-generic type `Foo' cannot be used with the type arguments
2
// Line: 16
3
4
public class
Foo
5
{
6
public string
Test
<
T
> ()
7
{
8
return null
;
9
}
10
}
11
12
public static class
Driver
13
{
14
static object
UseBrokenType
()
15
{
16
return
Foo
<
int
> ().
Test
();
17
}
18
}