1--TEST--
2Flexible heredoc syntax 2: mixing spaces and tabs in body
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