2014-11-18 10:39:16 -06:00
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
fn foo<
|
2014-11-28 00:01:41 -06:00
|
|
|
|
'β, //~ ERROR non-ascii idents are not fully supported
|
|
|
|
|
γ //~ ERROR non-ascii idents are not fully supported
|
2019-01-02 08:14:24 -06:00
|
|
|
|
//~^ WARN type parameter `γ` should have a camel case name such as `Γ`
|
2014-11-18 10:39:16 -06:00
|
|
|
|
>() {}
|
|
|
|
|
|
|
|
|
|
struct X {
|
2015-01-08 05:02:42 -06:00
|
|
|
|
δ: usize //~ ERROR non-ascii idents are not fully supported
|
2014-11-18 10:39:16 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn main() {
|
2014-11-28 00:01:41 -06:00
|
|
|
|
let α = 0.00001f64; //~ ERROR non-ascii idents are not fully supported
|
2014-11-18 10:39:16 -06:00
|
|
|
|
}
|