blob: 9f598ed38e362729b750ef6d6f3f2fd5c7bec3fb [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);
}