aboutsummaryrefslogtreecommitdiff
path: root/tests/functional/lang/eval-fail-flake-ref-to-string-negative-integer.nix
blob: e0208eb2519e47c652b593a13fbdd3457d72ecc3 (plain)
1
2
3
4
5
6
7
let n = -1; in builtins.seq n (builtins.flakeRefToString {
  type  = "github";
  owner = "NixOS";
  repo  = n;
  ref   = "23.05";
  dir   = "lib";
})