blob: 594ea99697e147fe23832af97a96f24008a46991 [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:
* \t for tab, equivalent to \x09.
* @description Checks that \t is equivalent to \x09.
* @author msyabro
* @reviewer rodionov
*/
import "../../Utils/expect.dart";
main() {
var escapeT = '\t';
var escapeX = '\x09';
Expect.identical(escapeT, escapeX);
}