blob: 91bd524a465f1fdb07ce053f0631e0f8167c8607 [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
*/
import '../../../Utils/expect.dart';
main() {
var escapeB = '\b';
var escapeX = '\x08';
Expect.identical(escapeB, escapeX);
}