GenericParameter.cs: override Module properly
[mcs.git] / tests / gtest-403.cs
blobc4bba300077666fa326ae669ca7c71679aaf054e
1 // Compiler options: -r:gtest-403-lib.dll
3 using System;
5 interface I {}
7 public struct S<T> : I
9 public void Foo ()
14 class T
16 public static void Main ()
18 S<int> i;
19 ExS<bool> e;
20 i.Foo ();
21 e.Bar ();