Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Baulig <martin@novell.com>2005-05-13 01:56:24 +0400
committerMartin Baulig <martin@novell.com>2005-05-13 01:56:24 +0400
commit6cb15e5757c4f6d87a8e69a85ef7ebc6b3f56876 (patch)
treec7216cddea007a02771d84c482854f6d9e2b53f7 /mcs/tests/test-379.cs
parent0f1b91ce654a55069d0cb1e36454b8114d315b7b (diff)
New test.
svn path=/trunk/mcs/; revision=44476
Diffstat (limited to 'mcs/tests/test-379.cs')
-rw-r--r--mcs/tests/test-379.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/mcs/tests/test-379.cs b/mcs/tests/test-379.cs
new file mode 100644
index 00000000000..f7094428f6a
--- /dev/null
+++ b/mcs/tests/test-379.cs
@@ -0,0 +1,16 @@
+using System;
+
+public class DeadCode {
+
+ public static void Main ()
+ {
+ SomeFunc ("...");
+ }
+
+ static public string SomeFunc (string str)
+ {
+ return str;
+ int i = 0, pos = 0;
+ }
+
+}