package com.my.company;

import java.lang.annotation.ElementType;
import java.lang.annotation.Target;

public class Client {
    public void packs3_new() {
        // Attempt to use the constant in the code
        float y = Client.ThreeFieldPack.EMPTY_PACK;
    }

    @Target(ElementType.TYPE_USE)
    public @interface ThreeFieldPack {
        // Invalid annotation usage on a constant field
        @Client.ThreeFieldPack float EMPTY_PACK = (@Client.ThreeFieldPack float) 0;
    }
} 