--- t/50objectpad.t~	2023-04-05 23:49:28.000000000 +0200
+++ t/50objectpad.t	2024-11-02 20:15:17.000000000 +0100
@@ -8,19 +8,19 @@
 use Object::Pad;
 
 class FooBar {
-	has $x :reader = [];
+	field $x :reader = [];
 	use Sub::HandlesVia::Declare '$x', Array => (
 		all_x => 'all',
 		add_x => 'push',
 	);
 
-	has @y;
+	field @y;
 	use Sub::HandlesVia::Declare '@y', (
 		all_y => 'all',
 		add_y => 'push',
 	);
 	
-	has %z;
+	field %z;
 	use Sub::HandlesVia::Declare '%z', (
 		all_z => 'all',
 		add_z => 'set',
