mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2025-02-06 18:36:48 +02:00
5 lines
114 B
Nix
5 lines
114 B
Nix
{
|
|
x = builtins.tryEval "x";
|
|
y = builtins.tryEval (assert false; "y");
|
|
z = builtins.tryEval (throw "bla");
|
|
}
|