#@assert/validate max_len=10
foo: "longer than 10"
#@assert/validate max_len=10.5
bar: "longer than 10"

+++

ERR:
  foo
    from: stdin:2
    - must be: length <= 10 (by: stdin:1)
      found: length = 14

  bar
    from: stdin:4
    - must be: length <= 10 (by: stdin:3)
      found: length = 14

