Mark fnty as __Fn to reflect experimental state (#928)

The `__Fn` naming is intended to mirror things like `__Continuation`.

The reason for this path is because it's not clear this is the form we'll want, and I think experimental naming will help reflect that.
This commit is contained in:
Jon Meow
2021-11-01 10:56:04 -07:00
committed by GitHub
parent 89a829b8c7
commit eeff5dcdae
5 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -16,6 +16,6 @@ fn add1(x: i32) -> i32 {
}
fn main() -> i32 {
var f: fnty(i32)->i32 = add1;
var f: __Fn(i32)->i32 = add1;
return f(-1);
}