i386, testsuite: Fix non-Unicode character
[official-gcc.git] / gcc / testsuite / rust / compile / path_as_generic_arg.rs
blob21baf8000e714826f398460315a5d640f0439406
1 #[lang = "sized"]
2 pub trait Sized {}
4 pub enum Result<T, E> {
5     Ok(T),
6     Err(E),
9 pub mod module {
10     pub struct E;
13 pub fn foo() -> Result<(), module::E> {
14     Result::Err(module::E)