blob: 3f8171a3904e952aa2488eed77e2e2ce6e14c625 [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 qualified:
* identifier ('.' identifier)?
* ;
* @description Checks qualified identifiers
* @author msyabro
*/
import '../../../Utils/expect.dart';
import '../lib.dart' as lib;
main() {
Expect.isTrue(lib.x == 1);
Expect.isTrue(lib.A.y == null);
}