Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-7867.rs
blob: e9fd10c6613d4d1637c2708bea6810eae9eca7ab [
file
] [
log
] [
blame
] [
edit
]
enum
A
{
B
,
C
}
mod
foo
{
pub
fn
bar
()
{}
}
fn
main
()
{
match
(
true
,
false
)
{
A
::
B
=>
(),
//~^ ERROR mismatched types
//~| expected `(bool, bool)`, found `A`
//~| expected tuple `(bool, bool)`
//~| found enum `A`
_
=>
()
}
}