Skip to content

Commit

Permalink
fix Issue 8462 - recursive alias error with function pointer
Browse files Browse the repository at this point in the history
  • Loading branch information
9rnsr committed Sep 14, 2014
1 parent 65fcdb4 commit b835ce4
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions test/runnable/template9.d
Expand Up @@ -3810,6 +3810,17 @@ void test13204()
static assert(is(B13204x == B13204z));
}

/******************************************/
// 8462 (dup of 13204)

alias FP8462 = void function(C8462.Type arg);

class C8462
{
enum Type { Foo }
alias funcPtrPtr = FP8462*;
}

/******************************************/
// 13218

Expand Down

0 comments on commit b835ce4

Please sign in to comment.