summaryrefslogtreecommitdiffstats
path: root/tests/bugs/interInherit/a_impl/Af.java
blob: f7c0d158d230b58be9d86344d0e4bf04d4a401be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package a_impl;

import a_intf.A;

aspect Af
{
  public A AImpl.f()
  {
	System.out.println( "f called" );
	return null;
  }
}