1
1
mirror of https://github.com/github/semantic.git synced 2024-12-19 12:51:52 +03:00
semantic/test/fixtures/java/corpus/TryCatches.B.java

9 lines
196 B
Java
Raw Normal View History

class Example2{
public static void main(String args[]){
try{
int data = 50;
} catch (ArithmeticException e){System.out.println(e);}
System.out.println("rest of the code...");
}
}