https://github.com/Azure/typespec-azure/pull/3258/files#diff-4dd36bd890dc7c62663da0ab05713fb52a5aaf0e011a202dba5bbf5efd0ee1cbR124 typespec: https://github.com/Azure/typespec-azure/blob/main/packages/azure-http-specs/specs/azure/client-generator-core/client-location/main.tsp ``` namespace _Specs_.Azure.ClientGenerator.Core.ClientLocation; namespace MoveMethodParameterToClient { model Blob { id: string; name: string; size: int32; path: string; } interface BlobOperations { @route("/blob") @get getBlob( @query @global.Azure.ClientGenerator.Core.clientLocation(MoveMethodParameterToClient) storageAccount: string, @query container: string, @query blob: string, ): Blob; } } ``` generate code build error: <img width="1045" height="404" alt="Image" src="https://github.com/user-attachments/assets/9854ed5f-5349-436d-826d-64de9e7f4d32" />