CASC-Lang / Yakou

An experimental JVM Language inspired by Rust.
38 stars 2 forks source link

Smart detect if duplicated (same access modifier or mut) field declarations exist #10

Closed ChAoSUnItY closed 2 years ago

ChAoSUnItY commented 3 years ago

The following code should throw : "Duplicated field declarations is not allowed."

priv mut:
    a: i32
priv mut:
    b: i32