diff options
Diffstat (limited to 'test/testdata/eval-fail-assert-equal-function-direct.nix')
-rw-r--r-- | test/testdata/eval-fail-assert-equal-function-direct.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/testdata/eval-fail-assert-equal-function-direct.nix b/test/testdata/eval-fail-assert-equal-function-direct.nix new file mode 100644 index 0000000..68e5e39 --- /dev/null +++ b/test/testdata/eval-fail-assert-equal-function-direct.nix | |||
@@ -0,0 +1,7 @@ | |||
1 | # Note: functions in nested structures, e.g. attributes, may be optimized away by pointer identity optimization. | ||
2 | # This only compares a direct comparison and makes no claims about functions in nested structures. | ||
3 | assert | ||
4 | (x: x) | ||
5 | == | ||
6 | (x: x); | ||
7 | abort "unreachable" \ No newline at end of file | ||