checker: allow indexing through alias to int (#14177)
							parent
							
								
									dce2173ac9
								
							
						
					
					
						commit
						95880dfe5c
					
				|  | @ -3775,7 +3775,9 @@ fn (mut c Checker) check_index(typ_sym &ast.TypeSymbol, index ast.Expr, index_ty | |||
| 	// if typ_sym.kind == .array && (!(ast.type_idx(index_type) in ast.number_type_idxs) &&
 | ||||
| 	// index_type_sym.kind != .enum_) {
 | ||||
| 	if typ_sym.kind in [.array, .array_fixed, .string] { | ||||
| 		if !(index_type.is_int() || index_type_sym.kind == .enum_) { | ||||
| 		if !(index_type.is_int() || index_type_sym.kind == .enum_ | ||||
| 			|| (index_type_sym.kind == .alias | ||||
| 			&& (index_type_sym.info as ast.Alias).parent_type.is_int())) { | ||||
| 			type_str := if typ_sym.kind == .string { | ||||
| 				'non-integer string index `$index_type_sym.name`' | ||||
| 			} else { | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue