blob: 2cb3534515dc376861afa6b2d82597abc5e5e50c [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 URIs are specified by means of string literals:
* uri:
* stringLiteral
* ;
* It is a compile-time error if the string literal x that describes a URI
* is not a compile-time constant, or if x involves string interpolation.
* @description Checks that it is not an error to use a multi-line string literal
* as a URI in a part directive and it still works even with leading whitespace
* since it's getting trimmed.
* @static-warning library name doesn't match that referenced by an included part
* @author rodionov
* @reviewer kaigorodov
*/
library URIs_A01;
part """
5_Part.dart""";
main() {
new FooClass();
}