diff options
author | Aleksey Kladov <[email protected]> | 2018-02-03 09:05:25 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2018-02-03 09:05:57 +0000 |
commit | e5273d33d05196ca215db4b1c4e207328fa5df08 (patch) | |
tree | c7dc8cc7c4d8bfd21e64c5a946a23b2d00ca697e /tests/data/parser/ok/0024_const_fn.rs | |
parent | 5e7504b978c9b1365e0381691ef453e97603defa (diff) |
G: const item
Diffstat (limited to 'tests/data/parser/ok/0024_const_fn.rs')
-rw-r--r-- | tests/data/parser/ok/0024_const_fn.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/data/parser/ok/0024_const_fn.rs b/tests/data/parser/ok/0024_const_fn.rs new file mode 100644 index 000000000..eba9322a1 --- /dev/null +++ b/tests/data/parser/ok/0024_const_fn.rs | |||
@@ -0,0 +1,5 @@ | |||
1 | const fn foo() { | ||
2 | } | ||
3 | |||
4 | const unsafe fn foo() { | ||
5 | } | ||