diff --git a/base/schema-pike/test/inputs/schema/rust-cycle-breaker-union.schema/default/TopLevel.pmod b/base/schema-pike/test/inputs/schema/rust-cycle-breaker-union.schema/default/TopLevel.pmod
deleted file mode 100644
index 24107bc..0000000
--- a/base/schema-pike/test/inputs/schema/rust-cycle-breaker-union.schema/default/TopLevel.pmod
+++ /dev/null
@@ -1,65 +0,0 @@
-// This source has been automatically generated by quicktype.
-// ( https://github.com/quicktype/quicktype )
-//
-// To use this code, simply import it into your project as a Pike module.
-// To JSON-encode your object, you can pass it to `Standards.JSON.encode`
-// or call `encode_json` on it.
-//
-// To decode a JSON string, first pass it to `Standards.JSON.decode`,
-// and then pass the result to `<YourClass>_from_JSON`.
-// It will return an instance of <YourClass>.
-// Bear in mind that these functions have unexpected behavior,
-// and will likely throw an error, if the JSON string does not
-// match the expected interface, even if the JSON itself is valid.
-
-class TopLevel {
-    Next   next;  // json: "next"
-    string value; // json: "value"
-
-    string encode_json() {
-        mapping(string:mixed) json = ([
-            "next" : next,
-            "value" : value,
-        ]);
-
-        return Standards.JSON.encode(json);
-    }
-}
-
-TopLevel TopLevel_from_JSON(mixed json) {
-    TopLevel retval = TopLevel();
-
-    retval.next = json["next"];
-    retval.value = json["value"];
-
-    return retval;
-}
-
-class Node {
-    Next   next;  // json: "next"
-    string value; // json: "value"
-
-    string encode_json() {
-        mapping(string:mixed) json = ([
-            "next" : next,
-            "value" : value,
-        ]);
-
-        return Standards.JSON.encode(json);
-    }
-}
-
-Node Node_from_JSON(mixed json) {
-    Node retval = Node();
-
-    retval.next = json["next"];
-    retval.value = json["value"];
-
-    return retval;
-}
-
-typedef Node|string Next;
-
-Next Next_from_JSON(mixed json) {
-    return json;
-}
