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-10-22 Marek Safar <marek.safar@gmail.com>
[mcs.git]
/
errors
/
cs0246-19.cs
blob
23feece9ae6a0d40082224bdb3f3e4f9996aed49
1
// CS0246: The type or namespace name `aGgt' could not be found. Are you missing a using directive or an assembly reference?
2
// Line: 13
3
4
using
System
;
5
6
class
C
7
{
8
public static void
Main
()
9
{
10
try
{
11
throw null
;
12
}
catch
(
ArgumentException
) {
13
}
catch
(
aGgt
) {
14
}
15
}
16
}