EncoderReplacementFallbackBuffer.Reset() did not really reset its internals.
[mono-project/dkf.git] / mcs / tests / gtest-525.cs
blob66a151ba1ddebf3506f76c093109909a1fbd2895
1 using System;
3 class A
5 static void MA<T> (string s)
9 static void F ()
13 class C
15 Func<int> MA;
16 int F;
18 void Foo ()
20 F ();
21 MA<int> ("");
24 public static void Main ()
26 new C ().Foo ();