blob: 8f48d703fba977ef61e103392970f9cb2bf995fc [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.
*/
/**
* @assertion Strings support escape sequences for special characters. The
* escapes are:
* . . .
* • \b for backspace, equivalent to \x08.
* @description Checks that \b is equivalent to \x08.
* @author msyabro
* @reviewer rodionov
*/
import '../../../Utils/expect.dart';
main() {
var escapeB = '\b';
var escapeX = '\x08';
Expect.identical(escapeB, escapeX);
}