Java - Static Keyword
Identify the error in the following code snippet:
class Example {
static {
System.out.println("Start");
}
static void block() {
System.out.println("Inside method");
}
}