Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Spurious 'non-exhaustive patterns' error #15080

Closed
ebfe opened this issue Jun 21, 2014 · 6 comments · Fixed by #15081
Closed

Spurious 'non-exhaustive patterns' error #15080

ebfe opened this issue Jun 21, 2014 · 6 comments · Fixed by #15081

Comments

@ebfe
Copy link
Contributor

ebfe commented Jun 21, 2014

It looks like #14731 introduced a regression.

The following used to work:

fn main() {
    let mut x = &[1, 2, 3, 4];

    loop {
        x = match x {
            [1, n, 3, ..rest] => {
                println!("1, {}, 3", n); 
                rest
            }
            [n, ..rest] => {
                println!("{}", n);
                rest
            }
            [] =>
                break
        }
    }
}

but now generates the following error:

t.rs:5:13: 16:10 error: non-exhaustive patterns: `[_, _]` not covered
t.rs:5         x = match x {
t.rs:6             [1, n, 3, ..rest] => {
t.rs:7                 println!("1, {}, 3", n); 
t.rs:8                 rest
t.rs:9             }
t.rs:10             [n, ..rest] => {
        ...
error: aborting due to previous error
@ebfe ebfe changed the title Spurious 'non-exhaustive patterns' warning Spurious 'non-exhaustive patterns' error Jun 21, 2014
@ghost
Copy link

ghost commented Jun 21, 2014

@ebfe Yeah, sorry about that! There's already a fix for this in #15078.

@ghost
Copy link

ghost commented Jun 21, 2014

I am also now seeing spurious 'non-exhaustive patterns' errors when attempting to match struct variants of an imported enum type.

For example, here is a simplification of some code in dtrebbien/valgrind_suppressions_util:

// mkdir -p lib
// rustc --out-dir lib mylib.rs

#![crate_id = "mylib#0.1"]
#![crate_type = "lib"]
#![feature(struct_variant)]

use std::string::{String};

pub enum SuppressionType {
    MemcheckAddr(uint),
    MemcheckLeak,
    OtherType {
        pub tool_name: String,
        pub suppression_type: String,
    },
}
// rustc -o main -L lib main.rs

#![feature(struct_variant)]

extern crate mylib;

use mylib::{SuppressionType, MemcheckAddr, MemcheckLeak, OtherType};
use std::io::stdio::{println};
use std::string::{String};

fn do_stuff(t: &SuppressionType) {
    let s = match t {
            &MemcheckAddr(n) => format!("Memcheck:Addr{:u}", n),
            &MemcheckLeak => format!("Memcheck:Leak"),
            &OtherType {
                tool_name: ref tool_name,
                suppression_type: ref suppression_type,
            } => {
                format!("{}:{}", tool_name.as_slice(), suppression_type.as_slice())
            },
        };
    println(s.as_slice());
}

fn main() {
    let t = MemcheckAddr(14);
    do_stuff(&t);
}

The error is:

main.rs:12:13: 21:10 error: non-exhaustive patterns: `&OtherType(_, _)` not covered
main.rs:12     let s = match t {
main.rs:13             &MemcheckAddr(n) => format!("Memcheck:Addr{:u}", n),
main.rs:14             &MemcheckLeak => format!("Memcheck:Leak"),
main.rs:15             &OtherType {
main.rs:16                 tool_name: ref tool_name,
main.rs:17                 suppression_type: ref suppression_type,
           ...
error: aborting due to previous error

@ghost
Copy link

ghost commented Jun 21, 2014

@dtrebbien Oh dear. Looks like it only fails when the enum is defined in a different crate as this works:

#![feature(struct_variant)]

use std::string::{String};
use std::io::stdio::{println};

pub enum SuppressionType {
    MemcheckAddr(uint),
    MemcheckLeak,
    OtherType {
        pub tool_name: String,
        pub suppression_type: String,
    },
}

fn do_stuff(t: &SuppressionType) {
    let s = match t {
            &MemcheckAddr(n) => format!("Memcheck:Addr{:u}", n),
            &MemcheckLeak => format!("Memcheck:Leak"),
            &OtherType {
                tool_name: ref tool_name,
                suppression_type: ref suppression_type,
            } => {
                format!("{}:{}", tool_name.as_slice(), suppression_type.as_slice())
            },
        };
    println(s.as_slice());
}

fn main() {
    let t = MemcheckAddr(14);
    do_stuff(&t);
}

I'll take a look!

@nikomatsakis
Copy link
Contributor

Please add an appropriate test for this case...

Niko

@ghost
Copy link

ghost commented Jun 22, 2014

@nikomatsakis I added a test for the cross-crate case in #15086. There are already quite a few existing tests for local variants.

@nikomatsakis
Copy link
Contributor

On Sun, Jun 22, 2014 at 07:43:54AM -0700, Jakub Wieczorek wrote:

@nikomatsakis I added a test for the cross-crate case in #15086. There are already quite a few existing tests for local variants.

great

bors added a commit to rust-lang-ci/rust that referenced this issue Jul 17, 2023
Unify getter and setter assists

This PR combines what previously have been two different files into a single file. I want to talk about the reasons why I did this. The issue that prompted this PR ( and before I forget : this pr fixes rust-lang#15080 ) mentions an interesting behavior. We combine these two assists into an assist group and the order in which the assists are listed in this group changes depending on the text range of the selected area. The reason for that is that VSCode prioritizes actions that have a bigger impact in a smaller area and until now generate setter assist was only possible to be invoked for a single field whereas you could generate multiple getters for the getter assist. So I used the latter's infra to make former applicable to multiple fields, hence the unification. So this PR solves in essence

1. Make `generate setter` applicable to multiple fields
2. Provide a consistent order of the said assists in listing.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants