Skip to content

Commit

Permalink
Remove explicit emplace specialization in unittest.
Browse files Browse the repository at this point in the history
  • Loading branch information
denis-sh committed Nov 18, 2012
1 parent 603d2e2 commit c31fcdc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions std/conv.d
Expand Up @@ -3467,11 +3467,11 @@ unittest
class K : I {}

K k = void;
emplace!K(&k);
emplace(&k);
assert(k is null);

I i = void;
emplace!I(&i);
emplace(&i);
assert(i is null);
}

Expand Down

0 comments on commit c31fcdc

Please sign in to comment.