summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/input/c/ifdef-nest.c
blob: 68baf1fcc0787747806ebfa9da47322861e3bf73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

namespace MonoTests.System.IO.IsolatedStorageTest {
   public class NonAbstractIsolatedStorage : IsolatedStorage {
      public NonAbstractIsolatedStorage () {
         string s = String.Format ("{0} {1}",
                                   Environment.NewLine,
#if NET_2_0
                                   String.Empty);
#else
                                   "            ");
#endif
      }
   }
}