We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3737e8 commit 921f858Copy full SHA for 921f858
gdnative/tests/ui.rs
@@ -5,8 +5,8 @@ fn ui_tests() {
5
// NativeClass
6
t.pass("tests/ui/derive_pass.rs");
7
t.pass("tests/ui/derive_property_basic.rs");
8
+ t.pass("tests/ui/derive_no_inherit.rs");
9
t.compile_fail("tests/ui/derive_fail_property_hint.rs");
- t.compile_fail("tests/ui/derive_fail_inherit.rs");
10
t.compile_fail("tests/ui/derive_fail_inherit_param.rs");
11
t.compile_fail("tests/ui/derive_fail_methods.rs");
12
t.compile_fail("tests/ui/derive_fail_methods_param.rs");
gdnative/tests/ui/derive_fail_inherit.stderr
gdnative/tests/ui/derive_fail_inherit.rs renamed to gdnative/tests/ui/derive_no_inherit.rs
@@ -5,7 +5,7 @@ struct Foo {}
#[methods]
impl Foo {
- fn new(_owner: &Node) -> Self {
+ fn new(_owner: &Reference) -> Self {
Foo {}
}
0 commit comments