forked from qt-creator/qt-creator
Add test cases for multiline comments. Change-Id: I3e02560791b331c7e1892e9c0bb50cd64241a2bb Reviewed-by: Erik Verbruggen <erik.verbruggen@qt.io>
17 lines
198 B
QML
17 lines
198 B
QML
import QtQuick 2.0
|
|
|
|
|
|
/* Comment 1
|
|
This is a multiline comment. */
|
|
|
|
/*
|
|
Another multiline comment.
|
|
|
|
A slightly different formatting.
|
|
*/
|
|
Item {
|
|
/*
|
|
Indented multiline comment.
|
|
*/
|
|
}
|