> ## Documentation Index
> Fetch the complete documentation index at: https://docs.sifr.sh/llms.txt
> Use this file to discover all available pages before exploring further.

# SIFR-INT-0011: Temporary bigint transition alias used.

> Temporary bigint transition alias used.

`SIFR-INT-0011` belongs to the **Integer model** diagnostic family. It means: temporary bigint transition alias used.

## Why It Happens

Sifr separates exact integers from fixed-width integers. This diagnostic fires when an integer value, conversion, or operation violates that model.

<Info>
  Use `sifr --explain SIFR-INT-0011` locally to see the renderer's exact message template and any machine-applicable suggestions for the compiler version you are running.
</Info>

## Erroneous Code

```python theme={null}
small: int8 = 200
```

## How To Fix It

Choose an integer type whose range fits the value, and make lossy or fallible numeric conversions explicit.

## Fixed Code

```python theme={null}
small: int8 = 127
wide: int = 200
```

## Details

| Field                  | Value                                                                                                             |
| ---------------------- | ----------------------------------------------------------------------------------------------------------------- |
| Code                   | `SIFR-INT-0011`                                                                                                   |
| Family                 | `INT`                                                                                                             |
| Severity               | Warning                                                                                                           |
| Stability              | stable                                                                                                            |
| Owner                  | `sifr_lowering::lower::typing_and_functions`                                                                      |
| Representative fixture | `crates/sifr_driver/src/tests/single_file_frontend.rs::test_type_check_source_surfaces_bigint_transition_warning` |

See the [Error Codes index](/diagnostics/error-codes) for the complete catalog.
