2014-11-18 17:39:16 +01:00
|
|
|
|
fn foo<
|
2014-11-28 19:01:41 +13:00
|
|
|
|
'β, //~ ERROR non-ascii idents are not fully supported
|
|
|
|
|
γ //~ ERROR non-ascii idents are not fully supported
|
2019-02-12 12:35:38 -05:00
|
|
|
|
//~^ WARN type parameter `γ` should have an upper camel case name
|
2014-11-18 17:39:16 +01:00
|
|
|
|
>() {}
|
|
|
|
|
|
|
|
|
|
struct X {
|
2015-01-08 22:02:42 +11:00
|
|
|
|
δ: usize //~ ERROR non-ascii idents are not fully supported
|
2014-11-18 17:39:16 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn main() {
|
2014-11-28 19:01:41 +13:00
|
|
|
|
let α = 0.00001f64; //~ ERROR non-ascii idents are not fully supported
|
2014-11-18 17:39:16 +01:00
|
|
|
|
}
|