PR# 13273 Useless verbatim string warnings

Problem Report Summary
Submitter: ericbe
Category: Compiler
Priority: Medium
Date: 2007/07/02
Class: Bug
Severity: Serious
Number: 13273
Release: 6.0.6.9201
Confidential: No
Status: Open
Responsible:
Environment: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1)
Synopsis: Useless verbatim string warnings

Description
When I compile the following code:

~~~~~~~~~~~~~~~~~~~~~~~~~~
	foo: STRING is
		do
			Result := "[
foo1
foo2
]"
		end
~~~~~~~~~~~~~~~~~~~~~~~~~~

I get this warning:

~~~~~~~~~~~~~~~~~~~~~~~~~~
Obsolete syntax used at line 19 in class FOO
Default verbatim string handling is changed to follow standard semantics with alignment instead of previous non-standard one without alignment.

foo2
]"
^---------------------------
        end
~~~~~~~~~~~~~~~~~~~~~~~~~~

Considering that there is no indentation in the verbatim string, I don't understand why the compiler is bothering us with this kind of warnings.
To Reproduce

										
Problem Report Interactions