# INTENTIONALLY INVALID. YAML forbids the TAB character as indentation; only spaces may
# indent a node. The lines below are indented with real TAB characters (U+0009), so a
# conforming loader must raise rather than guess. Tabs inside a scalar VALUE are legal,
# which is why the last key is fine and the ones above it are not.
pipeline:
	name: broken
	stages:
		- build
		- test
legal_tab_inside_value: "a	tab inside a quoted scalar is allowed"
