Skip to content

Instantly share code, notes, and snippets.

@ryanguill
Last active August 29, 2015 13:57
Show Gist options
  • Select an option

  • Save ryanguill/9485797 to your computer and use it in GitHub Desktop.

Select an option

Save ryanguill/9485797 to your computer and use it in GitHub Desktop.
railo-interface-bug
component implements="i" accessors="true" {
property name="name" type="string";
public any function init(name) {
setName(arguments.name);
return this;
}
}
interface {
string function getName();
}
<cfscript>
variables.c = new c("test");
writedump(variables.c.getName());
abort;
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment