aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs150/pr114436/TestClass.java
blob: 567020e82b9fe0b25e85bf96201ad8dbdfc3ef7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
public class TestClass
{
  public void doSomething(String stuff)
  {
    System.out.println("TestClass.doSomething(\""+stuff+"\")");
  }
  
  public static void main(String[] args)
  {
    TestClass test = new TestClass();
    test.doSomething("withThis");
  }
}