Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

25 lines
458 B
C#

// CS0436: The type `System.Runtime.CompilerServices.RuntimeHelpers' conflicts with the imported type of same name'. Ignoring the imported type definition
// Line: 20
// Compiler options: -warn:2 -warnaserror
using System.Runtime.CompilerServices;
namespace System.Runtime.CompilerServices
{
public class RuntimeHelpers
{
public static void SomeMethod ()
{
}
}
}
class C
{
public static void Main ()
{
RuntimeHelpers.SomeMethod (null);
}
}