blob: d03b903d5710ccad8bf3dc762e756acb21a0c992 [file] [log] [blame]
// REQUIRED_ARGS: -debug -profile
// https://issues.dlang.org/show_bug.cgi?id=10520
// [profile+nothrow] Building with profiler results in "is not nothrow" error on some contracts
void f() { }
void g()()
in { f(); } // OK <- Error: 'main.f' is not nothrow
do { }
alias gi = g!();