mirror of https://github.com/tc39/test262.git
12 lines
335 B
Plaintext
12 lines
335 B
Plaintext
// Copyright (C) 2017 Mike Pennisi. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
/*---
|
|
template: indentation
|
|
desc: Multiline string via a line continuation character
|
|
---*/
|
|
|
|
//- value
|
|
'this string is declared across multiple lines\
|
|
\
|
|
which disqualifies it as a candidate for indentation';
|