Merge all static runtime libs into libmono-static.
[mono.git] / mcs / tests / gtest-344.cs
1 using System;
2
3 public abstract class ConfigurationElement
4 {
5         protected ConfigurationElement ()
6         {
7         }
8         
9         public static void Main ()
10         {
11         }
12 }
13
14 public class CustomConfigurationElement : ConfigurationElement
15 {
16 }
17
18 public class CustomConfigurationElementCollection : BaseCollection<CustomConfigurationElement>
19 {
20 }
21
22 public class BaseCollection<T> where T : ConfigurationElement, new ()
23 {
24 }