Pattern matching a namespaced type
Open
- Dominant language
- Julia
- Stars
- 320
- Forks
- 84
- PR merge metrics
- No merged PRs in 30d
Description
It seems the pattern-matching syntax gets confused by the `.` in the type:
```
julia> using MacroTools, Markdown
julia> @capture(md"_hello_", x_Markdown.MD)
false
julia> using Markdown: MD
julia> @capture(md"_hello_", x_MD)
true
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.