blob: 1102be6ed98a2361e3e8f61cef336e4b9e38a2df [file] [log] [blame]
// Copyright (c) 2011, 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.
// @dart = 2.9
/// @assertion Strings support escape sequences for special characters. The
/// escapes are:
/// . . .
/// • \f for form feed, equivalent to \x0C.
/// @description Checks that \f is equivalent to \x0C.
/// @author msyabro
/// @reviewer rodionov
import '../../../Utils/expect.dart';
main() {
var escapeF = '\f';
var escapeX = '\x0C';
Expect.identical(escapeF, escapeX);
}