Skip to content

Instantly share code, notes, and snippets.

@jroesch
Created July 13, 2015 21:13
Show Gist options
  • Save jroesch/b592404b7fc8faa1752a to your computer and use it in GitHub Desktop.
Save jroesch/b592404b7fc8faa1752a to your computer and use it in GitHub Desktop.
src/test/compile-fail/default_ty_param_conflict.rs:19:13: 19:16 error: mismatched types:
expected `usize`,
found `isize` (conflicting type parameter defaults usize and isize) [E0308]
src/test/compile-fail/default_ty_param_conflict.rs:19 let x = foo();
^~~
src/test/compile-fail/default_ty_param_conflict.rs:19:13: 19:16 help: run `rustc --explain E0308` to see a detailed explanation
src/test/compile-fail/default_ty_param_conflict.rs:19:13: 19:16 note: conflicting type parameter defaults usize and isize
src/test/compile-fail/default_ty_param_conflict.rs:19 let x = foo();
^~~
src/test/compile-fail/default_ty_param_conflict.rs:1:1: 1:1 note: ...a default was defined
src/test/compile-fail/default_ty_param_conflict.rs:1 // Copyright 2015 The Rust Project Developers. See the COPYRIGHT
^
src/test/compile-fail/default_ty_param_conflict.rs:19:13: 19:16 note: ...that was applied to an unconstrained type variable here
src/test/compile-fail/default_ty_param_conflict.rs:19 let x = foo();
^~~
src/test/compile-fail/default_ty_param_conflict.rs:1:1: 1:1 note: ...a second default was defined
src/test/compile-fail/default_ty_param_conflict.rs:1 // Copyright 2015 The Rust Project Developers. See the COPYRIGHT
^
src/test/compile-fail/default_ty_param_conflict.rs:22:5: 22:8 note: ...that also applies to the same type variable here
src/test/compile-fail/default_ty_param_conflict.rs:22 bar(x);
^~~
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment