Skip to content
This repository was archived by the owner on May 23, 2024. It is now read-only.

ices/82034.sh: fixed with no errors #904

Merged
merged 1 commit into from
Aug 23, 2021
Merged

Conversation

github-actions[bot]
Copy link
Contributor

Issue: rust-lang/rust#82034

#!/bin/bash

rustc --test -C incremental=foo - <<'EOF'
#![feature(const_generics)]
#![feature(const_evaluatable_checked)]
#![allow(incomplete_features)]
pub trait IsTrue {}
pub trait IsFalse {}

pub struct Assert<const CHECK: bool> {}

impl IsTrue for Assert<true> {}
impl IsFalse for Assert<false> {}

pub struct SliceConstWriter<'a, const N: usize> {
    ptr: &'a mut [u8]
}
impl<'a, const N: usize> SliceConstWriter<'a, {N}> {
    pub fn from_slice(vec: &'a mut [u8]) -> Self {
        Self {
            ptr: vec
        }
    }

    pub fn convert<const NN: usize>(mut self) -> SliceConstWriter<'a, {NN}> {
        SliceConstWriter {
            ptr: self.ptr
        }
    }
}

impl<'a, const N: usize> SliceConstWriter<'a, {N}> where Assert::<{N >= 2}>: IsTrue {
    // broken
    pub fn write_u8(mut self) -> SliceConstWriter<'a, {N-2}> {
        self.convert()
    }
    
    //working
    // pub fn write_u8(mut self) -> SliceConstWriter<'a, {N-2}> {
    //     SliceConstWriter {
    //         ptr: self.ptr
    //     }
    // }
}


#[cfg(test)]
mod tests {
    use crate::SliceConstWriter;

    #[test]
    fn it_works() {
        let mut buff = [0u8; 128];
        let mut a = SliceConstWriter::<10>::from_slice(&mut buff);

        let mut a = a.write_u8().write_u8().write_u8().write_u8().write_u8();
    }
}
EOF
=== stdout ===
=== stderr ===
warning: unused variable: `a`
  --> <anon>:53:17
   |
53 |         let mut a = a.write_u8().write_u8().write_u8().write_u8().write_u8();
   |                 ^ help: if this is intentional, prefix it with an underscore: `_a`
   |
   = note: `#[warn(unused_variables)]` on by default

warning: variable does not need to be mutable
  --> <anon>:22:37
   |
22 |     pub fn convert<const NN: usize>(mut self) -> SliceConstWriter<'a, {NN}> {
   |                                     ----^^^^
   |                                     |
   |                                     help: remove this `mut`
   |
   = note: `#[warn(unused_mut)]` on by default

warning: variable does not need to be mutable
  --> <anon>:31:21
   |
31 |     pub fn write_u8(mut self) -> SliceConstWriter<'a, {N-2}> {
   |                     ----^^^^
   |                     |
   |                     help: remove this `mut`

warning: variable does not need to be mutable
  --> <anon>:51:13
   |
51 |         let mut a = SliceConstWriter::<10>::from_slice(&mut buff);
   |             ----^
   |             |
   |             help: remove this `mut`

warning: variable does not need to be mutable
  --> <anon>:53:13
   |
53 |         let mut a = a.write_u8().write_u8().write_u8().write_u8().write_u8();
   |             ----^
   |             |
   |             help: remove this `mut`

warning: 5 warnings emitted

==============

=== stdout ===
=== stderr ===
warning: unused variable: `a`
  --> <anon>:53:17
   |
53 |         let mut a = a.write_u8().write_u8().write_u8().write_u8().write_u8();
   |                 ^ help: if this is intentional, prefix it with an underscore: `_a`
   |
   = note: `#[warn(unused_variables)]` on by default

warning: variable does not need to be mutable
  --> <anon>:22:37
   |
22 |     pub fn convert<const NN: usize>(mut self) -> SliceConstWriter<'a, {NN}> {
   |                                     ----^^^^
   |                                     |
   |                                     help: remove this `mut`
   |
   = note: `#[warn(unused_mut)]` on by default

warning: variable does not need to be mutable
  --> <anon>:31:21
   |
31 |     pub fn write_u8(mut self) -> SliceConstWriter<'a, {N-2}> {
   |                     ----^^^^
   |                     |
   |                     help: remove this `mut`

warning: variable does not need to be mutable
  --> <anon>:51:13
   |
51 |         let mut a = SliceConstWriter::<10>::from_slice(&mut buff);
   |             ----^
   |             |
   |             help: remove this `mut`

warning: variable does not need to be mutable
  --> <anon>:53:13
   |
53 |         let mut a = a.write_u8().write_u8().write_u8().write_u8().write_u8();
   |             ----^
   |             |
   |             help: remove this `mut`

warning: 5 warnings emitted

==============
@Alexendoo Alexendoo merged commit bf725d2 into master Aug 23, 2021
@Alexendoo Alexendoo deleted the autofix/ices/82034.sh branch August 23, 2021 13:40
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants