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
Merge pull request #1821 from iainx/replace-getline
[mono-project.git]
/
mcs
/
errors
/
cs0304.cs
blob
2760b2ca53d237d7d0c371aa68710b8449fffaa5
1
// CS0304: Cannot create an instance of the variable type `T' because it does not have the new() constraint
2
// Line: 8
3
4
public class
Foo
<
T
>
5
{
6
public
T
Create
()
7
{
8
return new
T
();
9
}
10
}
11
12
class
X
13
{
14
static void
Main
()
15
{
16
}
17
}