"""
Indexing a string with starting slice larger than string length throws StringIndexOutOfBoundsException
"""

import support

"a"[10:]


