d244eeb84c
The "@compile-error" comment is an old not-great way of defining static error tests. See: https://github.com/dart-lang/sdk/issues/45634 Change-Id: I3e10209e78e48893d2f2df7f8af7963d319efd9f Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/296405 Reviewed-by: Jake Macdonald <jakemac@google.com> Commit-Queue: Bob Nystrom <rnystrom@google.com> Auto-Submit: Bob Nystrom <rnystrom@google.com>
21 lines
575 B
Dart
21 lines
575 B
Dart
// Copyright (c) 2012, 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.
|
|
|
|
class Cake {
|
|
final name;
|
|
const Cake(this.name);
|
|
|
|
@pragma("vm:external-name", "Cake_BakeMeACake")
|
|
@JSName("Cake_BakeMeACake")
|
|
//^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
// [analyzer] COMPILE_TIME_ERROR.UNDEFINED_ANNOTATION
|
|
// ^
|
|
// [cfe] Couldn't find constructor 'JSName'.
|
|
external const factory Cake.BakeMeACake();
|
|
}
|
|
|
|
main() {
|
|
var c = const Cake("Sacher");
|
|
}
|