Consider the following: ```groovy class A { public static X = 1 static class B { } } class C extends A.B { void test() { print X } } new C().test() ``` Executing this script prints "1", however the variable expression "X" is displayed as unknown (underlined). 
Consider the following:
Executing this script prints "1", however the variable expression "X" is displayed as unknown (underlined).