codeowners update
[mono.git] / mcs / tests / gtest-403.cs
1 // Compiler options: -r:gtest-403-lib.dll
2
3 using System;
4
5 interface I {}
6
7 public struct S<T> : I
8 {
9         public void Foo ()
10         {
11         }
12 }
13
14 class T
15 {
16         public static void Main ()
17         {
18                 S<int> i;
19                 ExS<bool> e;
20                 i.Foo ();
21                 e.Bar ();
22         }
23 }