mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
Implement more @export / @private improvements. Make @private default… (#729)
This commit is contained in:
committed by
GitHub
parent
3b49b87784
commit
5e457be605
@@ -1,9 +1,9 @@
|
||||
// #target: macos-x64
|
||||
// #debuginfo: yes
|
||||
private const char AA = 1;
|
||||
const char AA @private = 1;
|
||||
const char BB = 200 ;
|
||||
private const uint CC = ~(uint)(0);
|
||||
private const FOO = ~(uint)(0);
|
||||
const uint CC @private = ~(uint)(0);
|
||||
const FOO @private = ~(uint)(0);
|
||||
|
||||
/* #expect: constants.ll
|
||||
|
||||
|
||||
Reference in New Issue
Block a user