Merge pull request #4268 from catamorphism/issue-3477

Emit a type error for integer literals where the expected type is char
This commit is contained in:
Tim Chevalier 2012-12-28 13:05:58 -08:00
commit a75c0b3b32
3 changed files with 21 additions and 1 deletions

View file

@ -162,10 +162,11 @@ export kind_is_durable;
export meta_kind, kind_lteq, type_kind, type_kind_ext;
export operators;
export type_err, terr_vstore_kind;
export terr_mismatch, terr_onceness_mismatch;
export terr_integer_as_char, terr_mismatch, terr_onceness_mismatch;
export type_err_to_str, note_and_explain_type_err;
export expected_found;
export type_needs_drop;
export type_is_char;
export type_is_empty;
export type_is_integral;
export type_is_numeric;
@ -714,6 +715,7 @@ enum type_err {
terr_in_field(@type_err, ast::ident),
terr_sorts(expected_found<t>),
terr_self_substs,
terr_integer_as_char,
terr_no_integral_type,
terr_no_floating_point_type,
}
@ -2541,6 +2543,13 @@ fn type_is_integral(ty: t) -> bool {
}
}
fn type_is_char(ty: t) -> bool {
match get(ty).sty {
ty_int(ty_char) => true,
_ => false
}
}
fn type_is_fp(ty: t) -> bool {
match get(ty).sty {
ty_infer(FloatVar(_)) | ty_float(_) => true,
@ -3510,6 +3519,10 @@ fn type_err_to_str(cx: ctxt, err: &type_err) -> ~str {
~"couldn't determine an appropriate integral type for integer \
literal"
}
terr_integer_as_char => {
~"integer literals can't be inferred to char type \
(try an explicit cast)"
}
terr_no_floating_point_type => {
~"couldn't determine an appropriate floating point type for \
floating point literal"

View file

@ -366,6 +366,10 @@ impl infer_ctxt {
}
fn int_var_sub_t(a_id: ty::IntVid, b: ty::t) -> ures {
if ty::type_is_char(b) {
return Err(ty::terr_integer_as_char);
}
assert ty::type_is_integral(b);
let vb = &self.int_var_bindings;

View file

@ -0,0 +1,3 @@
fn main() {
let _p: char = 100; //~ ERROR mismatched types: expected `char` but found
}