What does this program print about the record component?

from Java 17 features
Java 25 LTS intermediate 2 min

What does this program print about the record component?

Java
import java.util.ArrayList;
import java.util.List;

public class Main {
    record Tags(List<String> values) {}

    public static void main(String[] args) {
        var source = new ArrayList<>(List.of("java"));
        var tags = new Tags(source);
        source.add("jdk");
        System.out.println(tags.values().size());
    }
}
Open in playground
Report an error