aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs150/pr102933.aj
blob: 42969ca7503535b6e431acc69a289291dc7aac15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.test;

public class pr102933 {

    public void test() {
    	pr102933[] array = new pr102933[0];
    	pr102933[] arrayClone = (pr102933[])array.clone();
    }
}

aspect MyAspect {
    declare warning: call(* *(..)) :
	       "a call within pr102933";
}