merge 99630:99762
[mono.git] / mcs / tests / gtest-344.cs
1 // Compiler options: /target:library
2
3 using System;
4
5 public abstract class ConfigurationElement
6 {
7         protected ConfigurationElement ()
8         {
9         }
10 }
11
12 public class CustomConfigurationElement : ConfigurationElement
13 {
14 }
15
16 public class CustomConfigurationElementCollection : BaseCollection<CustomConfigurationElement>
17 {
18 }
19
20 public class BaseCollection<T> where T : ConfigurationElement, new ()
21 {
22 }