X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;ds=sidebyside;f=mcs%2Ftests%2Ftest-120.cs;h=52322d37a55ae76f32ef29f7a49b340f3074c4df;hb=03d3aa5e1d6857c7f682e02f571cb349f331ddf9;hp=b076ef39f1b5fce716eb47570737d6c757da166f;hpb=881f83658281916d8f0784df7c726ecb7cc289db;p=mono.git diff --git a/mcs/tests/test-120.cs b/mcs/tests/test-120.cs index b076ef39f1b..52322d37a55 100644 --- a/mcs/tests/test-120.cs +++ b/mcs/tests/test-120.cs @@ -29,25 +29,25 @@ struct MyAuto class test { - static int Main () + public static int Main () { int errors = 0; Type t = typeof (MyUnicode); - if ((t.Attributes & TypeAttributes.UnicodeClass) != TypeAttributes.UnicodeClass){ + if ((t.Attributes & TypeAttributes.StringFormatMask) != TypeAttributes.UnicodeClass){ Console.WriteLine ("Class MyUnicode does not have Unicode bit set"); errors += 1; } t = typeof (MyAuto); - if ((t.Attributes & TypeAttributes.AutoClass) != TypeAttributes.AutoClass){ + if ((t.Attributes & TypeAttributes.StringFormatMask) != TypeAttributes.AutoClass){ Console.WriteLine ("Class MyAuto does not have Auto bit set"); errors += 2; } t = typeof (MyAnsi); - if ((t.Attributes & TypeAttributes.AnsiClass) != TypeAttributes.AnsiClass){ + if ((t.Attributes & TypeAttributes.StringFormatMask) != TypeAttributes.AnsiClass){ Console.WriteLine ("Class MyUnicode does not have Ansi bit set"); errors += 4; }