From 40eccf73e6679b2e1e8ea6d3bb929b33c07003ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20Wr=C3=B3blewski?= Date: Wed, 18 Oct 2023 20:40:02 +0200 Subject: [PATCH] Switch to list[0] --- test/postfix_test.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/postfix_test.dart b/test/postfix_test.dart index e55acd1..e279d7b 100644 --- a/test/postfix_test.dart +++ b/test/postfix_test.dart @@ -25,7 +25,7 @@ void main() { print(i); List list = [0]; print(list[0]++); - print(list.first); + print(list[0]); } ''' }