Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/compiler/src/frontend/lowering/lower-calls.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export interface FnSig {
* calling itself) converges, but POLYMORPHIC recursion (`f<T>` calling
* `f<T[]>`) would request new instances forever — the cap turns that into a
* diagnostic instead of a hang. */
export const MAX_GENERIC_INSTANCES = 100;
export const MAX_GENERIC_INSTANCES = 1000;

/** A generic function-like declaration, collected instead of an FnSig —
* top-level generic function declarations, class GENERIC METHODS (own type
Expand Down