diff options
Diffstat (limited to 'tests/lang/eval-okay-types.nix')
-rw-r--r-- | tests/lang/eval-okay-types.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/lang/eval-okay-types.nix b/tests/lang/eval-okay-types.nix index c3fe370ef770..8cb225e247fb 100644 --- a/tests/lang/eval-okay-types.nix +++ b/tests/lang/eval-okay-types.nix @@ -10,6 +10,8 @@ with builtins; (isInt { x = 123; }) (isBool (true && false)) (isBool null) + (isAttrs { x = 123; }) + (isAttrs null) (typeOf (3 * 4)) (typeOf true) (typeOf "xyzzy") |