A US person holding shares in a foreign mutual fund, exchange-traded fund, money-market fund, or certain other foreign passive entities is almost certainly holding a PFIC — a Passive Foreign Investment Company under IRC §§1291–1298. PFIC holders are subject to a tax regime designed in 1986 to discourage offshore deferral, and the design objective shows: under default rules, multi-year-deferred PFIC gains are taxed at the highest ordinary rate of any year in the holding period plus an interest charge for the deferral. Effective rates above 50% are routine for long-held positions.
This article is the deep dive on how PFIC tax treatment actually works, the three regimes (default §1291, QEF election under §1295, mark-to-market under §1296), the data shape each requires, and what synthetic test data has to look like to exercise PFIC handling correctly.
What makes a fund a PFIC
A foreign corporation is a PFIC if it satisfies either the income test or the asset test:
- Income test: 75%+ of gross income for the year is passive (dividends, interest, capital gains, royalties, etc.)
- Asset test: 50%+ of average assets produce or are held to produce passive income
Almost every non-US-domiciled mutual fund, ETF, money-market fund, and unit trust meets one or both tests. UCITS funds (the EU's harmonized retail-fund framework) are PFICs. Canadian mutual funds are PFICs. UK unit trusts are PFICs. Even some closed-end foreign holding companies and many foreign insurance contracts are PFICs.
A US holder identifies a PFIC the moment a foreign-domiciled investment is acquired — and the identification has reporting and tax consequences from that moment on, regardless of whether the fund pays distributions or appreciates.
The three tax regimes
A US PFIC holder has three possible tax regimes, each selected via election (or absence of election):
| Regime | Trigger | Tax treatment | When favorable | |
|---|---|---|---|---|
| Default §1291 (no election) | Default if no QEF or M2M election | 'Excess distribution' rules: ordinary rate × throwback periods + interest charge | Almost never — produces highest effective rate | |
| QEF (Qualified Electing Fund) | Elected at first year of PFIC holding; requires QEF-eligible information from fund | Pass-through-like: holder reports current-year ordinary income and capital gain shares | When fund provides QEF statement; comparable to US-fund taxation | |
| Mark-to-market (§1296) | Elected at first year; requires PFIC stock to be 'marketable' | Annual mark-to-market: gains taxed as ordinary income, losses as ordinary deductions to extent of prior gains | When fund is marketable but no QEF info; less punitive than default but still ordinary-rate |
Default §1291: the excess-distribution machinery
Under default rules, a PFIC distribution is bifurcated: the "non-excess" portion (typically 125% of the average distributions over the prior 3 years) is ordinary income at current rates. The "excess" portion is allocated rateably across every day of the holder's holding period, the per-day allocation is taxed at the highest ordinary rate of each year (38.6%, 39.6%, 37%, 22%, etc., per the year's brackets), and an interest charge accumulates from the year of allocation until current.
The same machinery applies on sale: the entire gain is treated as an excess distribution allocated across the holding period.
Synthetic data for default §1291 has to track:
// PFIC holding under default §1291
{
"holding_id": "H-EU-FUND-2025-09-30",
"symbol": "VWRA", // Vanguard FTSE All-World UCITS, a PFIC
"domicile": "IRL", // Ireland
"is_pfic": true,
"election_status": "default_section_1291",
"shares": 250,
"acquisition_history": [
{ "date": "2020-04-15", "shares": 100, "cost_basis": 24800.00 },
{ "date": "2022-08-22", "shares": 150, "cost_basis": 38625.00 }
],
"distribution_history": [
{ "year": 2023, "amount": 1240.00, "non_excess_portion": 1240.00, "excess_portion": 0.00 },
{ "year": 2024, "amount": 1685.00, "non_excess_portion": 1395.00, "excess_portion": 290.00 },
{ "year": 2025, "amount": 2105.00, "non_excess_portion": 1648.75, "excess_portion": 456.25 }
],
"form_8621_required": true
}
The platform has to compute the prior-3-year average for the bifurcation, allocate excess portions across the holding-period days for tax computation, and produce a Form 8621 for each year of holding.
QEF election: the favorable path that requires fund cooperation
A QEF election treats the fund as a pass-through for US tax purposes. The fund provides a "QEF statement" — typically annually — showing the holder's pro-rata share of the fund's ordinary earnings and net capital gain. The holder reports these on their 1040 in the year they're earned, regardless of whether they're distributed.
The catch: most non-US fund families don't provide QEF statements. Vanguard's UCITS funds historically didn't; some now do. Most European fund managers don't. The holder is at the fund's mercy on whether the favorable election is available.
// PFIC holding under QEF election with provided statement
{
"holding_id": "H-CAN-FUND-2025-09-30",
"symbol": "XIC.TO",
"domicile": "CAN",
"is_pfic": true,
"election_status": "qef_section_1295",
"qef_statement_2025": {
"ordinary_earnings_per_share": 1.42,
"net_capital_gain_per_share": 0.85,
"distributions_per_share": 0.92,
"tax_paid_per_share": 0.18
},
"holder_reporting_2025": {
"ordinary_income": 355.00, // 250 shares × 1.42
"net_capital_gain": 212.50, // 250 × 0.85
"ftc_eligible_foreign_tax": 45.00, // foreign tax credit available
"increase_in_basis": 567.50 // total inclusions add to basis
}
}
QEF results in basis adjustments: the inclusions raise basis, distributions reduce basis (but distributions are not separately taxable to the extent they came from already-taxed earnings).
Mark-to-market: the middle ground
For PFICs whose stock is "marketable" (publicly traded on a qualified exchange), the holder can elect mark-to-market under §1296. Each year, the fair-market-value of the holding at year-end is compared to the holder's adjusted basis; the difference is reported as ordinary income (if positive) or as ordinary deduction (if negative, up to extent of prior MTM gains).
// PFIC holding under MTM election
{
"holding_id": "H-UK-FUND-2025-09-30",
"symbol": "VHYL.L",
"domicile": "IRL",
"is_pfic": true,
"election_status": "mtm_section_1296",
"shares": 500,
"year_2024_mtm": {
"year_start_basis": 45200.00,
"year_end_fmv": 47850.00,
"mtm_inclusion_2024": 2650.00,
"year_end_basis_after_mtm": 47850.00
},
"year_2025_mtm": {
"year_start_basis": 47850.00,
"year_end_fmv": 46100.00,
"mtm_loss_2025": -1750.00,
"prior_mtm_gains_available": 2650.00,
"deductible_loss_2025": -1750.00, // limited to prior MTM gains
"year_end_basis_after_mtm": 46100.00
}
}
Mark-to-market avoids the §1291 interest charge but produces ordinary-income tax annually on unrealized gains — a cash-flow drag relative to deferral but still better than default §1291 over multi-year holding periods.
The data shape PFIC handling actually needs
A platform that supports PFIC holdings has to track, per holding:
| Field | Default §1291 | QEF | Mark-to-market | |
|---|---|---|---|---|
| Per-lot acquisition history | Required (allocation across holding period) | Required | Required | |
| Per-year distribution history | Required (3-year average for bifurcation) | Required (vs. QEF inclusions) | Required (basis-adjusted) | |
| QEF annual statement data | Not applicable | Required (fund-provided) | Not applicable | |
| Year-end FMV | Not required for tax (only at sale) | Optional | Required (annual MTM) | |
| Foreign tax paid | Subject to FTC under separate basket | Pass-through FTC available | May qualify for FTC | |
| Form 8621 generation | Annual; complex computation | Annual; simpler | Annual; mechanical |
A test corpus that doesn't include PFIC holdings under each of the three regimes — and a mix of holding ages, distribution patterns, and election timings — cannot exercise the platform's Form 8621 generation logic, the basis-adjustment logic, or the cross-regime transition logic (e.g. when a holder makes a "purging election" to convert a default-§1291 PFIC to QEF status).
How this shows up in our catalog
The cross-border bundles in the WealthSynth catalog include households holding PFIC investments in realistic distributions across the three regimes — most defaulting to §1291 (because most foreign funds don't provide QEF statements), some with QEF elections (typically Canadian and certain UK funds where the fund family provides QEF data), some with mark-to-market elections (typically UCITS ETFs traded on US exchanges or marketable foreign closed-end funds). The longitudinal data includes 5+ years of distribution history per PFIC so the §1291 prior-3-year-average bifurcation can be exercised.
For the broader cross-border context, see Cross-Border & Multi-Currency Wealth. For the foreign-tax-credit interaction (PFIC distributions can be FTC-eligible under specific rules), see Treaty-tier withholding and foreign tax credit modeling. For the existing narrow expat-focused piece this expands on, see International expat FBAR / FATCA: a niche use case.