From 2ae6b871f44dc2ebeae95be614b948c23309968e Mon Sep 17 00:00:00 2001 From: sgrekhov Date: Fri, 7 Nov 2025 10:15:28 +0200 Subject: [PATCH] #2825. Fix async functions call in scope_A06_t02.dart --- LanguageFeatures/Parts-with-imports/scope_A06_t02.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/LanguageFeatures/Parts-with-imports/scope_A06_t02.dart b/LanguageFeatures/Parts-with-imports/scope_A06_t02.dart index 12d1361642..5420bbcea0 100644 --- a/LanguageFeatures/Parts-with-imports/scope_A06_t02.dart +++ b/LanguageFeatures/Parts-with-imports/scope_A06_t02.dart @@ -29,7 +29,7 @@ import '../../Utils/expect.dart'; part 'scope_A06_t02_part1.dart'; -main() { - testPart1(); - testPart2(); +main() async { + await testPart1(); + await testPart2(); }