aboutsummaryrefslogtreecommitdiff
path: root/test/cases/compile_errors/multiple_function_definitions.zig
blob: d07eaee257e10befdc33802c36bf02ab70d498b6 (plain)
1
2
3
4
5
6
7
8
9
10
fn a() void {}
fn a() void {}
export fn entry() void { a(); }

// error
// backend=stage2
// target=native
//
// :2:1: error: redeclaration of 'a'
// :1:1: note: other declaration here