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-11-17 Marek Safar <marek.safar@gmail.com>
[mcs.git]
/
errors
/
gcs0307-4.cs
blob
d4c70bd755cc25ab4190ad4ddc65abe09bde4d36
1
// CS0307: The variable `d' cannot be used with type arguments
2
// Line: 9
3
4
public class
Tests
5
{
6
public static void
Main
()
7
{
8
var
d
=
0
;
9
d
<
int
> ();
10
}
11
}