Merge pull request #4928 from kumpera/ptr_to_struct_intrinsic
[mono.git] / mcs / tests / test-868.cs
index 3ca6157597266dd62aa2fe3f1aa4af429f1e6ff6..987869d2aad05fa2ee1edb48dc9848239b90a6f1 100644 (file)
@@ -8,6 +8,7 @@ using System.Reflection;
 [assembly: AssemblyTrademark ("Trademark")]
 [assembly: AssemblyVersion ("5.4.3.1")]
 [assembly: AssemblyFileVersion ("8.9")]
+[assembly: AssemblyTitle ("Title")]
 
 class C
 {
@@ -22,8 +23,8 @@ class C
                if (fv.CompanyName != "Company")
                        return 2;
 
-//             if (fv.Comments != "Description")
-//                     return 3;
+               if (fv.Comments != "Description")
+                       return 3;
 
                if (fv.LegalCopyright != "Copyright")
                        return 4;
@@ -34,6 +35,9 @@ class C
                if (fv.ProductVersion != "8.9")
                        return 6;
 
+               if (fv.FileDescription != "Title")
+                       return 7;
+
                return 0;
        }
 }
\ No newline at end of file