Showing with 3 additions and 3 deletions.
  1. +3 −3 std/variant.d
6 changes: 3 additions & 3 deletions std/variant.d
Original file line number Diff line number Diff line change
Expand Up @@ -2613,9 +2613,9 @@ unittest
Obj obj = 1;

obj.visit!(
(int x) => {},
(IntTypedef x) => {},
(Obj[] x) => {},
(int x) {},
(IntTypedef x) {},
(Obj[] x) {},
);
}

Expand Down