add test case

This commit is contained in:
Esteban Küber 2017-01-05 17:40:26 -08:00
parent f2dd75cb86
commit 563ecc1b1f
2 changed files with 31 additions and 8 deletions

View File

@ -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() {}

View File

@ -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