From 8e39ad255cd97b615882e0a1d242181ae3693897 Mon Sep 17 00:00:00 2001 From: "Sergey G. Grekhov" Date: Fri, 30 Aug 2019 15:11:38 +0700 Subject: [PATCH] Fix order of modifiers in code example --- accepted/future-releases/nnbd/feature-specification.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/accepted/future-releases/nnbd/feature-specification.md b/accepted/future-releases/nnbd/feature-specification.md index b3cbea0b2..4bc87abe1 100644 --- a/accepted/future-releases/nnbd/feature-specification.md +++ b/accepted/future-releases/nnbd/feature-specification.md @@ -421,13 +421,13 @@ throws. For example: ``` class A { - final late int x; + late final int x; } class B extends A { int get x => 3; } class C extends A { - final late int x = 3; + late final int x = 3; } void test() { Expect.throws(() => new B().x = 3);