Disabling auto bins

In reply to dave_59:

Hi Dave,

Ex:
logic [3:0] a;
logic b;
covergroup test;
coverpoint a {
illegal_bins = {1} iff(b);
}
endgroup

In this example, other bins should not be created automatically, how can I prevent that.

Thank You