--- old/test/jdk/valhalla/valuetypes/Point.java 2019-05-23 15:39:23.001455860 -0400 +++ new/test/jdk/valhalla/valuetypes/Point.java 2019-05-23 15:39:22.609453916 -0400 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -35,4 +35,9 @@ p = __WithField(p.y, y); return p; } + + public Point(int x, int y) { + this.x = x; + this.y = y; + } }