-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Comments
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:
|
@dtrebbien Oh dear. Looks like it only fails when the enum is defined in a different crate as this works:
I'll take a look! |
Please add an appropriate test for this case... Niko |
@nikomatsakis I added a test for the cross-crate case in #15086. There are already quite a few existing tests for local variants. |
On Sun, Jun 22, 2014 at 07:43:54AM -0700, Jakub Wieczorek wrote:
great |
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.
It looks like #14731 introduced a regression.
The following used to work:
but now generates the following error:
The text was updated successfully, but these errors were encountered: