You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi! Unfortunately, gaol does not compile using the current "stable" and "nightly" rustc.
Error with stable:
lib.rs:11:1: 11:21 error: #[feature] may not be used on the stable release channel
lib.rs:11 #![feature(convert)]
^~~~~~~~~~~~~~~~~~~~
Error with "rustc 1.4.0-nightly (10d69db0a 2015-08-23)":
tests/file-read-metadata.rs:65:76: 65:93 error: no method named `position_elem` found for type `[u8; 4096]` in the current scope
tests/file-read-metadata.rs:65 PathBuf::from(OsStr::from_bytes(&new_temp_path[..new_temp_path.position_elem(&0)
^~~~~~~~~~~~~~~~~
tests/file-read-metadata.rs:65:76: 65:93 help: items from traits can only be used if the trait is in scope; the following trait is implemented but not in scope, perhaps add a `use` for it:
tests/file-read-metadata.rs:65:76: 65:93 help: candidate #1: use `core::slice::SliceExt`
error: aborting due to previous error
The text was updated successfully, but these errors were encountered:
vn971
changed the title
unable to compile, compilation error with the current rustc versions
unable to compile (2015-08-24)
Aug 23, 2015
if I understand it correctly, position_elem method was removed [from rustc-nightly] without a "breaking_change" marker. Maybe because it was marked deprecated already, I don't know the "social" contract.
Hi! Unfortunately,
gaol
does not compile using the current "stable" and "nightly" rustc.Error with stable:
Error with "rustc 1.4.0-nightly (10d69db0a 2015-08-23)":
The text was updated successfully, but these errors were encountered: