[runtime] Coverage profiler fixes (#5698)
[mono.git] / mcs / tests / test-xml-066.cs
1 // Compiler options: -doc:xml-066.xml
2
3 static class C
4 {
5         static void Foo<T, U> (this int a, T t, U[] u)
6         {
7         }
8         
9         /// <seealso cref="Foo{T0,U2}(int,T0,U2[])"/>
10         static void Foo2<T> (this int a, T t)
11         {
12         }
13         
14         public static void Main ()
15         {
16         }
17 }