April 30, 20196 yr Newbies Error:(14, 17) Groovyc: Apparent variable 'conversion' was found in a static scope but doesn't refer to a local variable, static field or class. Possible causes: You attempted to reference a variable in the binding or an instance variable from a static context. You misspelled a classname or statically imported field. Please check the spelling. You attempted to use a method 'conversion' but left out brackets in a place not allowed by the grammar. Code in Groovy class conversionRate { int x int getX() { this.x = 200 return x } static void main(String[] args) { conversionRate conversion = new conversionRate() println(conversion.getX()) } }
April 30, 20196 yr Hello, Try capitalizing your class name and compiling that. conversionRate -> ConversionRate.
Create an account or sign in to comment