1// You can import anything defined in the dependencies table of the crate. 2use ui_test::Config; 3 4fn wrong_type() { 5 let _ = Config::this_function_does_not_exist(); 6 //~^ E0599 7} 8 9