We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
no block given
class Person property :name, :age def initialize(@name = nil, @age = nil) yield self end end person = Person.new do |p| p.name = "Jacob" p.age = "25" end
Incorrectly complains:
Error in /Users/asterite-manas/Projects/crystal/coco.cr:13: no block given person = Person.new do |p| ^~~
The text was updated successfully, but these errors were encountered:
ff306bd
No branches or pull requests
Incorrectly complains:
The text was updated successfully, but these errors were encountered: