* TemplateParser.cs: Detect if we are parsing a control or page
[mono.git] / mcs / tests / gen-33.cs
1 interface Foo<R,S>
2 {
3         void Hello (R r, S s);
4 }
5
6 interface Bar<T,U,V> : Foo<V,float>
7 {
8         void Test (T t, U u, V v);
9 }
10
11 class X
12 {
13         static void Test (Bar<long,int,string> bar)
14         {
15                 bar.Hello ("Test", 3.14F);
16                 bar.Test (512, 7, "Hello");
17         }
18
19         static void Main ()
20         { }
21 }