add test case
This commit is contained in:
parent
f2dd75cb86
commit
563ecc1b1f
@ -1,4 +1,4 @@
|
||||
// Copyright 2016 The Rust Project Developers. See the COPYRIGHT
|
||||
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
|
||||
// file at the top-level directory of this distribution and at
|
||||
// http://rust-lang.org/COPYRIGHT.
|
||||
//
|
||||
@ -7,20 +7,28 @@
|
||||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
||||
// option. This file may not be copied, modified, or distributed
|
||||
// except according to those terms.
|
||||
#![feature(slice_patterns)]
|
||||
|
||||
|
||||
struct Foo {
|
||||
}
|
||||
|
||||
fn foo(&foo: Foo) { // illegal syntax
|
||||
fn foo(&foo: Foo) {
|
||||
}
|
||||
|
||||
fn bar(foo: Foo) { // legal
|
||||
fn bar(foo: Foo) {
|
||||
}
|
||||
|
||||
fn qux(foo: &Foo) { // legal
|
||||
fn qux(foo: &Foo) {
|
||||
}
|
||||
|
||||
fn zar(&foo: &Foo) { // legal
|
||||
fn zar(&foo: &Foo) {
|
||||
}
|
||||
|
||||
fn agh(&&bar: &u32) {
|
||||
}
|
||||
|
||||
fn ugh(&[bar]: &u32) {
|
||||
}
|
||||
|
||||
fn main() {}
|
||||
|
@ -1,12 +1,27 @@
|
||||
error[E0308]: mismatched types
|
||||
--> $DIR/issue-38371.rs:14:8
|
||||
--> $DIR/issue-38371.rs:16:8
|
||||
|
|
||||
14 | fn foo(&foo: Foo) { // illegal syntax
|
||||
16 | fn foo(&foo: Foo) {
|
||||
| ^^^^ expected struct `Foo`, found reference
|
||||
|
|
||||
= note: expected type `Foo`
|
||||
= note: found type `&_`
|
||||
= help: did you mean `foo: &Foo`?
|
||||
|
||||
error: aborting due to previous error
|
||||
error[E0308]: mismatched types
|
||||
--> $DIR/issue-38371.rs:28:9
|
||||
|
|
||||
28 | fn agh(&&bar: &u32) {
|
||||
| ^^^^ expected u32, found reference
|
||||
|
|
||||
= note: expected type `u32`
|
||||
= note: found type `&_`
|
||||
|
||||
error[E0529]: expected an array or slice, found `u32`
|
||||
--> $DIR/issue-38371.rs:31:9
|
||||
|
|
||||
31 | fn ugh(&[bar]: &u32) {
|
||||
| ^^^^^ pattern cannot match with input type `u32`
|
||||
|
||||
error: aborting due to 3 previous errors
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user