Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Failure with the exceptions test #8

Closed
juanjux opened this issue Jan 16, 2019 · 0 comments · Fixed by #16
Closed

Failure with the exceptions test #8

juanjux opened this issue Jan 16, 2019 · 0 comments · Fixed by #16
Labels
bug Something isn't working

Comments

@juanjux
Copy link
Contributor

juanjux commented Jan 16, 2019

Code:

class Program {
    static void Main(string[] args) {
        int a;
        try {
            a = 1;
        } catch (System.Exception ex) {
            a = 2;
        } finally {
            a = 3;
        }
    }
}

Result:

--- FAIL: TestCsharpDriver (3.26s)
    --- FAIL: TestCsharpDriver/semantic (1.14s)
        --- FAIL: TestCsharpDriver/semantic/exceptions (0.03s)
        	fixtures.go:305: type check failed for "uast:QualifiedIdentifier": incorrect object type: "csharp:IdentifierNameSyntax", expected: "uast:Identifier"
@juanjux juanjux added the bug Something isn't working label Jan 16, 2019
dennwc pushed a commit to dennwc/csharp-driver that referenced this issue Jan 22, 2019
Signed-off-by: Denys Smirnov <denys@sourced.tech>
dennwc pushed a commit that referenced this issue Jan 22, 2019
Signed-off-by: Denys Smirnov <denys@sourced.tech>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant