Skip to content

Commit

Permalink
fixup test to do ITFI
Browse files Browse the repository at this point in the history
  • Loading branch information
UplinkCoder committed Jan 17, 2016
1 parent 848657a commit ef8f5ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test0183.d
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
// Tests IFTI overloads with constraints


auto handle(int v)() if (v == 1) {
auto handle(alias v)() if (v == 1) {
return 6;
}

auto handle(int v)() if (v != 3 && v != 1) {
auto handle(alias v)() if (v != 3 && v != 1) {
return 2;
}

Expand Down

0 comments on commit ef8f5ad

Please sign in to comment.