Merge pull request #4926 from BrzVlad/fix-tls-v5
[mono-project.git] / mcs / errors / cs0436-2.cs
blobb4545a96bd376de47cee6ab14a2b6bace7a96987
1 // CS0436: The type `System.Runtime.CompilerServices.RuntimeHelpers' conflicts with the imported type of same name'. Ignoring the imported type definition
2 // Line: 20
3 // Compiler options: -warn:2 -warnaserror
5 using System.Runtime.CompilerServices;
7 namespace System.Runtime.CompilerServices
9 public class RuntimeHelpers
11 public static void SomeMethod ()
18 class C
20 public static void Main ()
22 RuntimeHelpers.SomeMethod (null);