blob: 52900afd890cbbf6e50c6630701d241aa6a0e8c1 [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 The static type of a cast expression e as T is T.
* @description Checks that the static type of a cast expression e as T is T.
* @static-clean
* @author rodionov
*/
main() {
var n = 1;
int x = n as int;
}