mirror of
https://github.com/dlang/phobos.git
synced 2025-04-28 22:21:09 +03:00
TypeTuple -> MetaList inside Phobos
This commit is contained in:
parent
73f773838d
commit
82f54a38d3
42 changed files with 615 additions and 613 deletions
|
@ -428,11 +428,11 @@ unittest
|
|||
{
|
||||
import std.meta;
|
||||
|
||||
foreach (EncloseSafe; TypeTuple!(false, true))
|
||||
foreach (EnclosePure; TypeTuple!(false, true))
|
||||
foreach (EncloseSafe; MetaList!(false, true))
|
||||
foreach (EnclosePure; MetaList!(false, true))
|
||||
{
|
||||
foreach (BodySafe; TypeTuple!(false, true))
|
||||
foreach (BodyPure; TypeTuple!(false, true))
|
||||
foreach (BodySafe; MetaList!(false, true))
|
||||
foreach (BodyPure; MetaList!(false, true))
|
||||
{
|
||||
enum code =
|
||||
"delegate void() " ~
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue