<!-- Please provide all of the information requested below. We're a small team and without all of this information it's not possible for us to help and your bug report will be closed. --> **What version of Tailwind CSS are you using?** v4.1.2 **What build tool (or framework if it abstracts the build tool) are you using?** @tailwindcss/cli **What version of Node.js are you using?** v22.10.0 **What browser are you using?** Chrome **What operating system are you using?** macOS 15 **Reproduction URL** https://github.com/markzalar/tailwind-4.0.10-slim-first-in-array **Describe your issue** This issue started happening in tailwindcss 4.0.10 If the only occurrence of a class is the first element of a Slim attribute array, the class doesn't get extracted. For example, if I have the following slim code ```slim div[ class=%w[bg-blue-500 w-10 h-10] ] div[ class=%w[w-10 bg-green-500 h-10] ] ``` I would expect it to render as  but if that's the only instance of `bg-blue-500` in the codebase it doesn't get extracted and the slim snippet above renders as 