Add test for #2633. Xfailed.
This commit is contained in:
parent
6e63e2fd5f
commit
f0d8e978a9
18
src/test/run-pass/issue-2633.rs
Normal file
18
src/test/run-pass/issue-2633.rs
Normal file
@ -0,0 +1,18 @@
|
||||
// Currently segfaults
|
||||
// xfail-test
|
||||
class cat {
|
||||
let mut meow: fn@();
|
||||
new() { self.meow = fn@() { #error("meow"); };}
|
||||
}
|
||||
|
||||
type kitty_info = {kitty: cat};
|
||||
|
||||
// Code compiles and runs successfully if we add a + before the first arg
|
||||
fn nyan(kitty: cat, _kitty_info: kitty_info) {
|
||||
kitty.meow();
|
||||
}
|
||||
|
||||
fn main() {
|
||||
let mut kitty = cat();
|
||||
nyan(kitty, {kitty: kitty});
|
||||
}
|
Loading…
Reference in New Issue
Block a user