blob: ffeec34220411f07d8c8b8f1e6d11093de3f7c5d [file] [log] [blame]
class X {
interface GrAnnotation {}
static void getResolvedAnnotations(GrAnnotation annotation) {
<selection>coll</selection>(annotation)
}
static void coll(GrAnnotation alias) {
alias
}
}
-----
class X {
interface GrAnnotation {}
static void getResolvedAnnotations(GrAnnotation annotation) {
annotation
}
static void coll(GrAnnotation alias) {
alias
}
}