You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> Converted without errors, but no graphs created.
I am getting the following message on trying to convert a simple Java program into the control flow graph.
Following is the program itself
```
public class Simple2 {
static void p(){
System.out.println("hello");
p();
}
public static void main(String[] args) {
p();
}
}
```
What am I missing ?
The text was updated successfully, but these errors were encountered:
/app/code > convert /app/Simple2.java
The text was updated successfully, but these errors were encountered: