Skip to content
This repository was archived by the owner on Feb 7, 2018. It is now read-only.
This repository was archived by the owner on Feb 7, 2018. It is now read-only.

Non-numeric byte strings cause a crash #114

@aakilfernandes

Description

@aakilfernandes

Compiles:

contract C1 {
    function f1() constant returns(bytes) {
        bytes memory bb = "\x00\x01\x04"; 
        return(bb);
    }
}

Crashes:

contract C1 {
    function f1() constant returns(bytes) {
        bytes memory bb = "\x00\x01\xa4"; 
        return(bb);
    }
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions