re-styled
[mono.git] / mcs / tests / test-556.cs
1 using System;
2 using System.Collections;
3
4 public class S 
5 {
6         public void Frobnikator() 
7         {
8                 const UInt32 SMALL_MASK = (1U << (24)) - 1; 
9                 const ulong BIG_MASK = ~((ulong)SMALL_MASK);
10                 
11         }
12         
13         public void CharToX ()
14         {
15                 const char c = 'a';
16                 
17                 const ushort us = c;
18                 const int i = c;
19                 const uint ui = c;
20                 const long l = c;
21                 const ulong ul= c;
22                 const float fl = c;
23                 const double d = c;
24                 const decimal dec = c;
25         }
26
27         static void Main ()
28         {
29         }       
30 }