Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bevyengine
GitHub Repository: bevyengine/bevy
Path: blob/main/tools/compile_fail_utils/tests/example_tests/import.rs
6598 views
1
// You can import anything defined in the dependencies table of the crate.
2
use ui_test::Config;
3
4
fn wrong_type() {
5
let _ = Config::this_function_does_not_exist();
6
//~^ E0599
7
}
8
9