Java Cannot make a static reference to the non-static method

Java Cannot make a static reference to the non-static method
refer t‮ual:o‬tturi.com
Exception in thread "main" java.lang.Error: Unresolved compilation problem: 
	Cannot make a static reference to the non-static method fib(int) from the type Lautturi

solution

change the method to static

int fib(int n) {
}

to

static int fib(int n) {
}
Created Time:2017-10-07 14:07:16  Author:lautturi