fc158b1616
Change-Id: I2351571a665c8ffff8e9d57649fbf42b483e747b Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/142983 Commit-Queue: Johnni Winther <johnniwinther@google.com> Reviewed-by: Mayank Patke <fishythefish@google.com>
14 lines
445 B
Dart
14 lines
445 B
Dart
// Copyright (c) 2017, 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.
|
|
|
|
// @dart = 2.7
|
|
|
|
/*member: stringInterpolation:SideEffects(reads nothing; writes anything)*/
|
|
stringInterpolation(o) => '${o}';
|
|
|
|
/*member: main:SideEffects(reads nothing; writes anything)*/
|
|
main() {
|
|
stringInterpolation(null);
|
|
}
|