1--TEST--
2Flexible heredoc syntax 1: different indentation for body (spaces) ending marker (tabs)
3--FILE--
4<?php
5
6echo <<<END
7	   a
8	  b
9	 c
10		END;
11
12?>
13--EXPECTF--
14Parse error: Invalid indentation - tabs and spaces cannot be mixed in %s on line %d
15