summaryrefslogtreecommitdiffstats
path: root/tests/bugs/faultingInSource/SampleClass.java
blob: e5e7363608edf31090b423aa294bcafb9b6dfdf2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
public class SampleClass
{
	void foo (String s)
	{
		System.out.println ("Printing " + s);
	}
	
	public static void main(String[] args)
	{
		SampleClass sc = new SampleClass();
		sc.foo ("hahaha");
	}
}