From 5e89808d490d893799ebcf229130afe4cf2b0324 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Fr=C3=B8ystad?= Date: Sat, 19 Jun 2021 16:19:47 +0200 Subject: [PATCH] Adds missing test for final constant --- test/corpus/class.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/corpus/class.txt b/test/corpus/class.txt index 4e07a460..afa3626e 100644 --- a/test/corpus/class.txt +++ b/test/corpus/class.txt @@ -181,6 +181,7 @@ class Foo { public const B = 2; protected const C = 3; private const D = 4; + final const E = 5; } --- @@ -205,6 +206,10 @@ class Foo { (visibility_modifier) (const_element (name) (integer)) ) + (const_declaration + (final_modifier) + (const_element (name) (integer)) + ) ) ) )