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
add comment
[mcs.git]
/
tests
/
test-379.cs
blob
f7094428f6a6f39acd8d5aef1f380b747e1c74ea
1
using
System
;
2
3
public class
DeadCode
{
4
5
public static void
Main
()
6
{
7
SomeFunc
(
"..."
);
8
}
9
10
static public string
SomeFunc
(
string
str
)
11
{
12
return
str
;
13
int
i
=
0
,
pos
=
0
;
14
}
15
16
}