mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
17 lines
401 B
D
17 lines
401 B
D
module b;
|
|
|
|
import imports.std15030algo;
|
|
|
|
unittest
|
|
{
|
|
auto dg =
|
|
// __lambda1
|
|
(int[] delegate(int[]) self) =>
|
|
// __lambda2
|
|
(int[] arr) => arr
|
|
? self([arr.filter!(
|
|
// __lambda2.__lambda2
|
|
a => a
|
|
).front])
|
|
: null;
|
|
}
|