Skip to content

Commit

Permalink
add decimal index
Browse files Browse the repository at this point in the history
  • Loading branch information
tserg committed Oct 25, 2023
1 parent 4ea6466 commit e5524c3
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tests/parser/syntax/test_dynamic_array.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
import pytest

from vyper import compiler
from vyper.exceptions import StructureException
from vyper.exceptions import ArrayIndexException, StructureException

fail_list = [
(
"""
foo: DynArray[uint256, 2.5]
""",
StructureException,
),
(
"""
foo: DynArray[HashMap[uint8, uint8], 2]
""",
StructureException,
Expand Down

0 comments on commit e5524c3

Please sign in to comment.