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-20 Marek Safar <marek.safar@gmail.com>
[mcs.git]
/
errors
/
gcs0246-4.cs
blob
44540fb65756b659849920545957288f06f5a2c2
1
// CS0246: The type or namespace name `TypeMe' could not be found. Are you missing a using directive or an assembly reference?
2
// Line: 12
3
4
class
C
5
{
6
static void
Foo
<
T
> (
int
i
)
7
{
8
}
9
10
public static void
Main
()
11
{
12
Foo
<
TypeMe
> (
1
);
13
}
14
}