a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
17 lines
184 B
C#
17 lines
184 B
C#
using System;
|
|
|
|
public class DeadCode {
|
|
|
|
public static void Main ()
|
|
{
|
|
SomeFunc ("...");
|
|
}
|
|
|
|
static public string SomeFunc (string str)
|
|
{
|
|
return str;
|
|
int i = 0, pos = 0;
|
|
}
|
|
|
|
}
|