1
1
mirror of https://github.com/github/semantic.git synced 2024-12-01 00:33:59 +03:00
semantic/test/fixtures/java/corpus/TryCatches.B.java
2018-07-24 18:17:42 -04:00

9 lines
196 B
Java

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...");
}
}