New GitHub issue #93165 from tusharsadhwani:<br>

<hr>

<pre>
Code snippet:

```python
class C(list[int]): ...
```

On Python 3.9:
```pycon
>>> class C(list[*a]): ...
  File "<stdin>", line 1
    class C(list[*a]): ...
                   ^
SyntaxError: invalid syntax
>>> 
```

On Python 3.10 and above:
```pycon

>>> class C(list[*a]): ...
  File "<stdin>", line 1
    class C(list[*a]): ...
           ^
SyntaxError: expected ':'
>>>
```
</pre>

<hr>

<a href="https://github.com/python/cpython/issues/93165">View on GitHub</a>
<p>Labels: type-bug</p>
<p>Assignee: </p>