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

Clarify that function definition needs to be in scope. Fixes #3003 #3006

Closed
wants to merge 1 commit into from
Closed

Clarify that function definition needs to be in scope. Fixes #3003 #3006

wants to merge 1 commit into from

Conversation

DJDuque
Copy link

@DJDuque DJDuque commented Jan 19, 2022

Explicit mention that functions cannot be just defined "somewhere" e.g.

fn main() {                                                                      
    a_function();                                                                
                                                                                 
    {                                                                            
        fn a_function() {                                                        
            println!("Hello, World!");                                           
        }                                                                        
    }                                                                            
} 

See issue #3003

@carols10cents carols10cents added this to the ch3 milestone Jan 20, 2022
This pull request was closed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants