blob: cb3b3a50d1bb2b83d62a6d8fe076a43f1e1c0c8c [file] [log] [blame]
// Copyright (c) 2020, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// test w/ `dart test -N unnecessary_raw_strings`
f(o) {
f(r'a b c d');// LINT
f(r"a b c d");// LINT
f(r'''a b c d''');// LINT
f(r"""a b c d""");// LINT
// with \
f(r'a b c\d');// OK
f(r"a b c\d");// OK
f(r'''a b c\d''');// OK
f(r"""a b c\d""");// OK
// with $
f(r'a b c$d');// OK
f(r"a b c$d");// OK
f(r'''a b c$d''');// OK
f(r"""a b c$d""");// OK
}