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
[metadata] Use MONO_PROFILER_API on MonoClass getters in checked builds (#20440)
[mono-project.git]
/
mcs
/
errors
/
cs1524.cs
blob
55d0b35c795b36c596a804d602e5edd896060829
1
// CS1524: Unexpected symbol `return', expecting `catch' or `finally'
2
// Line: 12
3
4
namespace
Test
{
5
public class
Test
{
6
public static int
Main
() {
7
int
a
;
8
try
{
9
a
=
1
;
10
}
11
12
return
0
;
13
}
14
}
15
}