Merge pull request #1412 from esdrubal/stackframe
[mono.git] / mcs / tests / test-decl-expr-02.cs
1 // Compiler options: -langversion:experimental
2
3 using System.Console;
4
5 public class DeclarationExpressions
6 {
7         public static void Main()
8         {
9                 // TODO:
10                 //Test (int value = 5);
11                 //WriteLine (value);
12         }
13
14         void M2 ()
15         {
16 //              for (int i = 0; int v = 2; ++i) {
17
18 //              }
19
20         }
21
22         static int Test (int x)
23         {
24                 WriteLine (x);
25                 return x;
26         }
27 }