Skip to content

Commit

Permalink
Merge branch 'master' of github.com:D-Programming-Language/dmd
Browse files Browse the repository at this point in the history
  • Loading branch information
WalterBright committed May 18, 2012
2 parents 40f81b4 + 98d21c4 commit b53e310
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/runnable/imports/link8023b.d
@@ -0,0 +1,2 @@
module imports.link8023b;
import link8023;
19 changes: 19 additions & 0 deletions test/runnable/link8023.d
@@ -0,0 +1,19 @@
// COMPILE_SEPARATELY
// EXTRA_SOURCES: imports/link8023b.d
// PERMUTE_ARGS: -inline -release

import imports.link8023b;

private void t(alias Code)()
{
return Code();
}

void f()
{
t!( () { } )();
}

void main() {
f();
}

0 comments on commit b53e310

Please sign in to comment.