-2

After clicking Run, I see this:

enter image description here

How to remove it and display the result:

System.out.print ("ASdsddasad");

Or is it an IntelliJ IDEA bug?

elmigue017
  • 343
  • 2
  • 12
Prost
  • 169
  • 1
  • 7
  • 1
    What's error ?? – John Joe Jul 22 '17 at 17:06
  • 3
    Pictures of code do not count as code, they are less than useless. –  Jul 22 '17 at 17:10
  • 2
    Source code is text. So are error messages. Please edit your question and replace all screen shots with text. – GhostCat Jul 22 '17 at 17:13
  • The question itself decided. It was necessary to press the button "Toogle Task executions" in the new version of IntelliJ IDEA. Now I see the result of my code. Thank you all. If you can then tell me how to answer your own question as an answer? – Prost Jul 23 '17 at 09:53

1 Answers1

2

You are running test class, for that reason you cannot see "ASdsddasad". To run the main java class, you can click on green arrow from public static void main(String[] args) method and choose Run 'Main.main()' or you can right click on any part of your class and choose the same option Run 'Main.main()'

elmigue017
  • 343
  • 2
  • 12