aboutsummaryrefslogtreecommitdiff
path: root/bin/tests/data/bool_comparison.nix
blob: dee2d08f2710f96945366b6880953fa5ee3e9a0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
[
  # trivial
  (a == true)
  (b == true)
  (true == c)
  (true == d)

  # not equals
  (e != true)
  (f != false)
  (true != g)
  (false != h)
]