c66f91be23
Change-Id: I7cdfb0000996a711bdee9b1618c20a21bbdda814 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/427620 Commit-Queue: Nate Biggs <natebiggs@google.com> Reviewed-by: Nate Biggs <natebiggs@google.com> Auto-Submit: Mayank Patke <fishythefish@google.com>
9 lines
321 B
Dart
9 lines
321 B
Dart
// Copyright (c) 2025, 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.
|
|
|
|
enum Foo { e1, e2, e3 }
|
|
|
|
@pragma('dyn-module:entry-point')
|
|
Object? dynamicModuleEntrypoint() => Foo.e2;
|