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
avoid using a custom sources file for the net_2_1_raw profile
[mcs.git]
/
errors
/
gcs0417.cs
blob
2396ef63690952b1818ed4985d6805baaf457b05
1
// CS0417.cs: `T': cannot provide arguments when creating an instance of a variable type
2
// Line: 9
3
4
public class
Foo
<
T
>
5
where T
:
new
()
6
{
7
public
T
Create
()
8
{
9
return new
T
(
8
);
10
}
11
}
12
13
class
X
14
{
15
static void
Main
()
16
{
17
}
18
}