Merge pull request #4202 from marek-safar/compression
[mono-project.git] / mcs / tests / test-465.cs
blob3064c2057dd9d367f495914f5f1d574fb7fc236f
1 // Compiler options: -res:test-465.cs,
3 using System.Reflection;
4 using System;
6 class C {
7 public static int Main ()
9 string [] s = typeof (C).Assembly.GetManifestResourceNames ();
10 if (s [0] != "test-465.cs")
11 return 1;
13 if (typeof (C).Assembly.GetManifestResourceStream ("test-465.cs") == null)
14 return 2;
16 Console.WriteLine ("OK");
17 return 0;