* roottypes.cs: Rename from tree.cs.
[mono.git] / mono / tests / decimal.cs
1 using System;
2
3 class Class1
4 {
5         static void Main(string[] args)
6         {
7                 Class1 o = new Class1();
8                 try {
9                 }
10                 finally {
11                         // this allocates space on the stack and
12                         // thus modifies the stack pointer
13                         decimal x = 7.7m;
14                 }
15         }
16 }
17