1# RUN: yaml-bench -canonical %s 2>&1 | FileCheck %s 2# 3# FIXME: This test should actually fail. Yaml-bench should report an error 4# that a tab is being used to indent a plain scalar at line 15. 5# We don't currently reject tabs as indentation. 6 7# Tabs do's and don'ts: 8# comment: 9quoted: "Quoted " 10block: | 11 void main() { 12 printf("Hello, world!\n"); 13 } 14elsewhere: # separation 15 indentation, in plain scalar 16 17 18# CHECK: !!str "Quoted\t\t" 19