Updated with review feedback.
[mono.git] / mcs / tests / test-379.cs
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 }