Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
lifetimes
/
issue-97193.rs
blob: 6c82c29dd9d4871f69642d52dcecf9f3c10c1513 [
file
] [
log
] [
blame
] [
edit
]
extern
"C"
{
fn
a
(&
mut
self
)
{
//~^ ERROR incorrect function inside `extern` block
//~| ERROR `self` parameter is only allowed in associated functions
fn
b
(
buf
:
&
Self
)
{}
}
}
fn
main
()
{}