• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package testdata;
2 
3 public class Basic {
4 
5     String field = "this is a field";
6 
method()7     String method() {
8         return "this is a method result";
9     }
10 }
11