Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Getting the message "Converted without errors, but no graphs created" #44

Open
rahulseetharaman opened this issue May 18, 2022 · 0 comments

Comments

@rahulseetharaman
Copy link

/app/code > convert /app/Simple2.java

processing /app/Simple2.java

> 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 ?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant