EncoderReplacementFallbackBuffer.Reset() did not really reset its internals.
[mono-project/dkf.git] / mcs / tests / gtest-066.cs
blob995879e35399001ac1f07037dfed3376e329230b
1 using System;
2 using A = Test;
4 public class Foo<T>
6 public class Bar <U>
11 namespace Test
13 class FooEx<V, W> {}
16 class X
18 static void Main ()
20 Console.WriteLine (typeof (Foo<>));
21 Console.WriteLine (typeof (Foo<>.Bar<>));
22 Console.WriteLine (typeof (Test.FooEx<,>));
23 Console.WriteLine (typeof (A::FooEx<,>));