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

24 lines
491 B
C#

// CS1618: Cannot create delegate with `System.Diagnostics.Debug.Assert(bool)' because it has a Conditional attribute
// Line: 8
namespace Foo {
using System.Diagnostics;
partial class Bar {
delegate void assert_t (bool condition);
assert_t assert = new assert_t (Debug.Assert);
}
}
namespace Foo {
using System;
partial class Bar
{
public Bar () {}
static void Main ()
{
if (new Bar ().assert == null)
throw new Exception ("Didn't resolve Debug.Assert?");
}
}
}