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
2010-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
gcs0246-4.cs
blob
bd7ea63a81f563e01f713f6b7e91726fff05162b
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
}